GetBillingServiceConfigResponse constructor
GetBillingServiceConfigResponse({
- BillingAddress? billingAddress,
- String? supportEmail,
- String? logoUrl,
- String? billingDashboardUrl,
Implementation
factory GetBillingServiceConfigResponse({
BillingAddress? billingAddress,
$core.String? supportEmail,
$core.String? logoUrl,
$core.String? billingDashboardUrl,
}) {
final $result = create();
if (billingAddress != null) {
$result.billingAddress = billingAddress;
}
if (supportEmail != null) {
$result.supportEmail = supportEmail;
}
if (logoUrl != null) {
$result.logoUrl = logoUrl;
}
if (billingDashboardUrl != null) {
$result.billingDashboardUrl = billingDashboardUrl;
}
return $result;
}