ExceptionHandlingWidget<E extends Exception> constructor

const ExceptionHandlingWidget<E extends Exception>({
  1. required OutputWidget errorWidgetMaker(
    1. E exception
    ),
  2. OutputWidget? elseWidget,
})

Implementation

const ExceptionHandlingWidget({
  required this.errorWidgetMaker,
  this.elseWidget,
});