ErrorDisplay constructor

const ErrorDisplay({
  1. Key? key,
  2. required Exception exception,
  3. VoidCallback? onRetry,
  4. Widget customBuilder(
    1. BuildContext context,
    2. Exception exception,
    3. VoidCallback? onRetry
    )?,
})

Implementation

const ErrorDisplay({
  super.key,
  required this.exception,
  this.onRetry,
  this.customBuilder,
});