EmailSent constructor

const EmailSent({
  1. required String email,
  2. VoidCallback? onOpenEmailPressed,
  3. VoidCallback? onTryAnotherEmailPressed,
  4. String pageTitle = 'Email sent to',
  5. String description = 'Check your email and open the link we sent to continue',
  6. String openEmailButtonText = 'Open email',
  7. String bottomDisclaimerText = 'Did not receive the email? Check your spam filter, or',
  8. String tryAnotherEmailButtonText = 'Try another email',
  9. Key? key,
})

Implementation

const EmailSent({
  required this.email,
  this.onOpenEmailPressed,
  this.onTryAnotherEmailPressed,
  this.logo,
  this.pageTitle = 'Email sent to',
  this.description = 'Check your email and open the link we sent to continue',
  this.openEmailButtonText = 'Open email',
  this.bottomDisclaimerText = 'Did not receive the email? Check your spam filter, or',
  this.tryAnotherEmailButtonText = 'Try another email',
  super.key,
});