GetLegalAndSupportSettingsResponse constructor

GetLegalAndSupportSettingsResponse({
  1. Details? details,
  2. 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;
}