ErrorViewBuilder typedef

ErrorViewBuilder = Widget Function({dynamic error, VoidCallback? onRetry, String? retryLabel, bool showRestart, String? subtitle, required String title})

Implementation

typedef ErrorViewBuilder = Widget Function({
  required String title,
  dynamic error,
  String? retryLabel,
  VoidCallback? onRetry,
  String? subtitle,
  bool showRestart,
});