ErrorPage constructor

const ErrorPage({
  1. String title = 'Something went wrong',
  2. String contentText = 'Sorry, but we were not able to execute your request. Please, try again',
  3. VoidCallback? onRetryPressed,
  4. VoidCallback? onBackPressed,
  5. Key? key,
  6. String retryButtonText = 'Retry',
  7. 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',
});