ErrorPage constructor

const ErrorPage({
  1. String title = 'Page not found',
  2. String contentText = errorPageDefaultContentText,
  3. VoidCallback? onRetryPressed,
  4. VoidCallback? onBackPressed,
  5. Key? key,
})

Implementation

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