PasswordScreenText constructor
PasswordScreenText({})
Implementation
factory PasswordScreenText({
$core.String? title,
$core.String? description,
$core.String? passwordLabel,
$core.String? resetLinkText,
$core.String? backButtonText,
$core.String? nextButtonText,
$core.String? minLength,
$core.String? hasUppercase,
$core.String? hasLowercase,
$core.String? hasNumber,
$core.String? hasSymbol,
$core.String? confirmation,
}) {
final result = create();
if (title != null) result.title = title;
if (description != null) result.description = description;
if (passwordLabel != null) result.passwordLabel = passwordLabel;
if (resetLinkText != null) result.resetLinkText = resetLinkText;
if (backButtonText != null) result.backButtonText = backButtonText;
if (nextButtonText != null) result.nextButtonText = nextButtonText;
if (minLength != null) result.minLength = minLength;
if (hasUppercase != null) result.hasUppercase = hasUppercase;
if (hasLowercase != null) result.hasLowercase = hasLowercase;
if (hasNumber != null) result.hasNumber = hasNumber;
if (hasSymbol != null) result.hasSymbol = hasSymbol;
if (confirmation != null) result.confirmation = confirmation;
return result;
}