ExternalRegistrationUserOverviewScreenText constructor

ExternalRegistrationUserOverviewScreenText({
  1. String? title,
  2. String? description,
  3. String? emailLabel,
  4. String? usernameLabel,
  5. String? firstnameLabel,
  6. String? lastnameLabel,
  7. String? nicknameLabel,
  8. String? languageLabel,
  9. String? phoneLabel,
  10. String? tosAndPrivacyLabel,
  11. String? tosConfirm,
  12. String? tosLinkText,
  13. String? privacyLinkText,
  14. String? backButtonText,
  15. String? nextButtonText,
  16. String? privacyConfirm,
})

Implementation

factory ExternalRegistrationUserOverviewScreenText({
  $core.String? title,
  $core.String? description,
  $core.String? emailLabel,
  $core.String? usernameLabel,
  $core.String? firstnameLabel,
  $core.String? lastnameLabel,
  $core.String? nicknameLabel,
  $core.String? languageLabel,
  $core.String? phoneLabel,
  $core.String? tosAndPrivacyLabel,
  $core.String? tosConfirm,
  $core.String? tosLinkText,
  $core.String? privacyLinkText,
  $core.String? backButtonText,
  $core.String? nextButtonText,
  $core.String? privacyConfirm,
}) {
  final result = create();
  if (title != null) result.title = title;
  if (description != null) result.description = description;
  if (emailLabel != null) result.emailLabel = emailLabel;
  if (usernameLabel != null) result.usernameLabel = usernameLabel;
  if (firstnameLabel != null) result.firstnameLabel = firstnameLabel;
  if (lastnameLabel != null) result.lastnameLabel = lastnameLabel;
  if (nicknameLabel != null) result.nicknameLabel = nicknameLabel;
  if (languageLabel != null) result.languageLabel = languageLabel;
  if (phoneLabel != null) result.phoneLabel = phoneLabel;
  if (tosAndPrivacyLabel != null)
    result.tosAndPrivacyLabel = tosAndPrivacyLabel;
  if (tosConfirm != null) result.tosConfirm = tosConfirm;
  if (tosLinkText != null) result.tosLinkText = tosLinkText;
  if (privacyLinkText != null) result.privacyLinkText = privacyLinkText;
  if (backButtonText != null) result.backButtonText = backButtonText;
  if (nextButtonText != null) result.nextButtonText = nextButtonText;
  if (privacyConfirm != null) result.privacyConfirm = privacyConfirm;
  return result;
}