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