RegistrationOrgScreenText constructor

RegistrationOrgScreenText({
  1. String? title,
  2. String? description,
  3. String? orgnameLabel,
  4. String? firstnameLabel,
  5. String? lastnameLabel,
  6. String? usernameLabel,
  7. String? emailLabel,
  8. String? passwordLabel,
  9. String? passwordConfirmLabel,
  10. String? tosAndPrivacyLabel,
  11. String? tosConfirm,
  12. String? tosLinkText,
  13. String? privacyConfirm,
  14. String? privacyLinkText,
  15. String? saveButtonText,
})

Implementation

factory RegistrationOrgScreenText({
  $core.String? title,
  $core.String? description,
  $core.String? orgnameLabel,
  $core.String? firstnameLabel,
  $core.String? lastnameLabel,
  $core.String? usernameLabel,
  $core.String? emailLabel,
  $core.String? passwordLabel,
  $core.String? passwordConfirmLabel,
  $core.String? tosAndPrivacyLabel,
  $core.String? tosConfirm,
  $core.String? tosLinkText,
  $core.String? privacyConfirm,
  $core.String? privacyLinkText,
  $core.String? saveButtonText,
}) {
  final _result = create();
  if (title != null) {
    _result.title = title;
  }
  if (description != null) {
    _result.description = description;
  }
  if (orgnameLabel != null) {
    _result.orgnameLabel = orgnameLabel;
  }
  if (firstnameLabel != null) {
    _result.firstnameLabel = firstnameLabel;
  }
  if (lastnameLabel != null) {
    _result.lastnameLabel = lastnameLabel;
  }
  if (usernameLabel != null) {
    _result.usernameLabel = usernameLabel;
  }
  if (emailLabel != null) {
    _result.emailLabel = emailLabel;
  }
  if (passwordLabel != null) {
    _result.passwordLabel = passwordLabel;
  }
  if (passwordConfirmLabel != null) {
    _result.passwordConfirmLabel = passwordConfirmLabel;
  }
  if (tosAndPrivacyLabel != null) {
    _result.tosAndPrivacyLabel = tosAndPrivacyLabel;
  }
  if (tosConfirm != null) {
    _result.tosConfirm = tosConfirm;
  }
  if (tosLinkText != null) {
    _result.tosLinkText = tosLinkText;
  }
  if (privacyConfirm != null) {
    _result.privacyConfirm = privacyConfirm;
  }
  if (privacyLinkText != null) {
    _result.privacyLinkText = privacyLinkText;
  }
  if (saveButtonText != null) {
    _result.saveButtonText = saveButtonText;
  }
  return _result;
}