RegistrationUserScreenText constructor
RegistrationUserScreenText({
- String? title,
- String? description,
- String? descriptionOrgRegister,
- String? firstnameLabel,
- String? lastnameLabel,
- String? emailLabel,
- String? usernameLabel,
- String? languageLabel,
- String? genderLabel,
- String? passwordLabel,
- String? passwordConfirmLabel,
- String? tosAndPrivacyLabel,
- String? tosConfirm,
- String? tosLinkText,
- String? privacyConfirm,
- String? privacyLinkText,
- String? nextButtonText,
- String? backButtonText,
Implementation
factory RegistrationUserScreenText({
$core.String? title,
$core.String? description,
$core.String? descriptionOrgRegister,
$core.String? firstnameLabel,
$core.String? lastnameLabel,
$core.String? emailLabel,
$core.String? usernameLabel,
$core.String? languageLabel,
$core.String? genderLabel,
$core.String? passwordLabel,
$core.String? passwordConfirmLabel,
$core.String? tosAndPrivacyLabel,
$core.String? tosConfirm,
$core.String? tosLinkText,
$core.String? privacyConfirm,
$core.String? privacyLinkText,
$core.String? nextButtonText,
$core.String? backButtonText,
}) {
final result = create();
if (title != null) result.title = title;
if (description != null) result.description = description;
if (descriptionOrgRegister != null)
result.descriptionOrgRegister = descriptionOrgRegister;
if (firstnameLabel != null) result.firstnameLabel = firstnameLabel;
if (lastnameLabel != null) result.lastnameLabel = lastnameLabel;
if (emailLabel != null) result.emailLabel = emailLabel;
if (usernameLabel != null) result.usernameLabel = usernameLabel;
if (languageLabel != null) result.languageLabel = languageLabel;
if (genderLabel != null) result.genderLabel = genderLabel;
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 (nextButtonText != null) result.nextButtonText = nextButtonText;
if (backButtonText != null) result.backButtonText = backButtonText;
return result;
}