ExternalRegistrationUserOverviewScreenText constructor
ExternalRegistrationUserOverviewScreenText({
- String? title,
- String? description,
- String? emailLabel,
- String? usernameLabel,
- String? firstnameLabel,
- String? lastnameLabel,
- String? nicknameLabel,
- String? languageLabel,
- String? phoneLabel,
- String? tosAndPrivacyLabel,
- String? tosConfirm,
- String? tosLinkText,
- String? privacyLinkText,
- String? backButtonText,
- String? nextButtonText,
- 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;
}