EmailSent constructor
const
EmailSent({
- required String email,
- VoidCallback? onOpenEmailPressed,
- VoidCallback? onTryAnotherEmailPressed,
- Widget? logo,
- String pageTitle = 'Email sent to',
- String description = 'Check your email and open the link we sent to continue',
- String openEmailButtonText = 'Open email',
- String bottomDisclaimerText = 'Did not receive the email? Check your spam filter, or',
- String tryAnotherEmailButtonText = 'Try another email',
- 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,
});