VerifyMFAU2FScreenText constructor

VerifyMFAU2FScreenText({
  1. String? title,
  2. String? description,
  3. String? validateTokenText,
  4. String? notSupported,
  5. String? errorRetry,
})

Implementation

factory VerifyMFAU2FScreenText({
  $core.String? title,
  $core.String? description,
  $core.String? validateTokenText,
  $core.String? notSupported,
  $core.String? errorRetry,
}) {
  final result = create();
  if (title != null) result.title = title;
  if (description != null) result.description = description;
  if (validateTokenText != null) result.validateTokenText = validateTokenText;
  if (notSupported != null) result.notSupported = notSupported;
  if (errorRetry != null) result.errorRetry = errorRetry;
  return result;
}