PasswordlessRegistrationScreenText constructor
PasswordlessRegistrationScreenText({})
Implementation
factory PasswordlessRegistrationScreenText({
$core.String? title,
$core.String? description,
$core.String? tokenNameLabel,
$core.String? notSupported,
$core.String? registerTokenButtonText,
$core.String? errorRetry,
}) {
final result = create();
if (title != null) result.title = title;
if (description != null) result.description = description;
if (tokenNameLabel != null) result.tokenNameLabel = tokenNameLabel;
if (notSupported != null) result.notSupported = notSupported;
if (registerTokenButtonText != null)
result.registerTokenButtonText = registerTokenButtonText;
if (errorRetry != null) result.errorRetry = errorRetry;
return result;
}