ActerInlineErrorButton constructor

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

Implementation

const ActerInlineErrorButton({
  super.key,
  required this.error,
  this.icon,
  this.stack,
  this.dialogTitle,
  this.text,
  this.textBuilder,
  this.onRetryTap,
  this.includeBugReportButton = true,
});