ErrorPage constructor

const ErrorPage({
  1. dynamic key,
  2. required dynamic background,
  3. required Object error,
  4. required StackTrace stack,
  5. String? title,
  6. String? text,
  7. String textBuilder(
    1. Object error
    )?,
  8. dynamic onRetryTap,
  9. double borderRadius = 15.0,
  10. bool includeBugReportButton = true,
})

Implementation

const ErrorPage({
  super.key,
  required this.background,
  required this.error,
  required this.stack,
  this.title,
  this.text,
  this.textBuilder,
  this.onRetryTap,
  this.borderRadius = 15.0,
  this.includeBugReportButton = true,
});