LegalAndSupportSettings constructor

LegalAndSupportSettings({
  1. String? tosLink,
  2. String? privacyPolicyLink,
  3. String? helpLink,
  4. String? supportEmail,
  5. 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;
}