LegalAndSupportSettings constructor
LegalAndSupportSettings({
- String? tosLink,
- String? privacyPolicyLink,
- String? helpLink,
- String? supportEmail,
- ResourceOwnerType? resourceOwnerType,
Implementation
factory LegalAndSupportSettings({
$core.String? tosLink,
$core.String? privacyPolicyLink,
$core.String? helpLink,
$core.String? supportEmail,
$1.ResourceOwnerType? resourceOwnerType,
}) {
final $result = create();
if (tosLink != null) {
$result.tosLink = tosLink;
}
if (privacyPolicyLink != null) {
$result.privacyPolicyLink = privacyPolicyLink;
}
if (helpLink != null) {
$result.helpLink = helpLink;
}
if (supportEmail != null) {
$result.supportEmail = supportEmail;
}
if (resourceOwnerType != null) {
$result.resourceOwnerType = resourceOwnerType;
}
return $result;
}