ActerErrorDialog constructor

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

Implementation

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