RouteErrorViewBuilder typedef

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

Implementation

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