ErrorPage constructor
const
ErrorPage({
- String title = 'Page not found',
- String contentText = errorPageDefaultContentText,
- Widget? logo,
- VoidCallback? onRetryPressed,
- VoidCallback? onBackPressed,
- Key? key,
Implementation
const ErrorPage({
this.title = 'Page not found',
this.contentText = errorPageDefaultContentText,
this.logo,
this.onRetryPressed,
this.onBackPressed,
Key? key,
}) : super(key: key);