PasswordlessRegistrationScreenText constructor

PasswordlessRegistrationScreenText({
  1. String? title,
  2. String? description,
  3. String? tokenNameLabel,
  4. String? notSupported,
  5. String? registerTokenButtonText,
  6. String? errorRetry,
})

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;
}