ErrorPage constructor
const
ErrorPage({
- String title = 'Something went wrong',
- String contentText = 'Sorry, but we were not able to execute your request. Please, try again',
- Widget? logo,
- VoidCallback? onRetryPressed,
- VoidCallback? onBackPressed,
- Key? key,
- String retryButtonText = 'Retry',
- String backButtonText = 'Back',
Implementation
const ErrorPage({
this.title = 'Something went wrong',
this.contentText =
'Sorry, but we were not able to execute your request. Please, try again',
this.logo,
this.onRetryPressed,
this.onBackPressed,
super.key,
this.retryButtonText = 'Retry',
this.backButtonText = 'Back',
});