GetLegalAndSupportSettingsResponse constructor
GetLegalAndSupportSettingsResponse({
- Details? details,
- LegalAndSupportSettings? settings,
Implementation
factory GetLegalAndSupportSettingsResponse({
$1.Details? details,
$6.LegalAndSupportSettings? settings,
}) {
final result = create();
if (details != null) result.details = details;
if (settings != null) result.settings = settings;
return result;
}