ErrorDisplay constructor
const
ErrorDisplay({
- Key? key,
- required Exception exception,
- VoidCallback? onRetry,
- Widget customBuilder(
- BuildContext context,
- Exception exception,
- VoidCallback? onRetry
Implementation
const ErrorDisplay({
super.key,
required this.exception,
this.onRetry,
this.customBuilder,
});