GetAppBrandingResponse constructor

GetAppBrandingResponse({
  1. String? logoPath,
  2. Map<String, TextOverrides>? textCustomizations,
  3. Iterable<String>? fragmentIds,
})

Implementation

factory GetAppBrandingResponse({
  $core.String? logoPath,
  $core.Map<$core.String, TextOverrides>? textCustomizations,
  $core.Iterable<$core.String>? fragmentIds,
}) {
  final $result = create();
  if (logoPath != null) {
    $result.logoPath = logoPath;
  }
  if (textCustomizations != null) {
    $result.textCustomizations.addAll(textCustomizations);
  }
  if (fragmentIds != null) {
    $result.fragmentIds.addAll(fragmentIds);
  }
  return $result;
}