GetAppBrandingResponse constructor
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;
}