InitPasswordScreenText constructor
InitPasswordScreenText({})
Implementation
factory InitPasswordScreenText({
$core.String? title,
$core.String? description,
$core.String? codeLabel,
$core.String? newPasswordLabel,
$core.String? newPasswordConfirmLabel,
$core.String? nextButtonText,
$core.String? resendButtonText,
}) {
final result = create();
if (title != null) result.title = title;
if (description != null) result.description = description;
if (codeLabel != null) result.codeLabel = codeLabel;
if (newPasswordLabel != null) result.newPasswordLabel = newPasswordLabel;
if (newPasswordConfirmLabel != null)
result.newPasswordConfirmLabel = newPasswordConfirmLabel;
if (nextButtonText != null) result.nextButtonText = nextButtonText;
if (resendButtonText != null) result.resendButtonText = resendButtonText;
return result;
}