EmailVerificationScreenText constructor

EmailVerificationScreenText({
  1. String? title,
  2. String? description,
  3. String? codeLabel,
  4. String? nextButtonText,
  5. String? resendButtonText,
})

Implementation

factory EmailVerificationScreenText({
  $core.String? title,
  $core.String? description,
  $core.String? codeLabel,
  $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 (nextButtonText != null) result.nextButtonText = nextButtonText;
  if (resendButtonText != null) result.resendButtonText = resendButtonText;
  return result;
}