ErrorViewBuilder typedef
ErrorViewBuilder =
Widget Function(BuildContext context, {dynamic error, VoidCallback? onRetry, String? retryLabel, bool showRestart, StackTrace? stackTrace, String? subtitle, required String title})
A builder for an error view widget.
Implementation
typedef ErrorViewBuilder = Widget Function(
BuildContext context, {
required String title,
dynamic error,
StackTrace? stackTrace,
String? retryLabel,
VoidCallback? onRetry,
String? subtitle,
bool showRestart,
});