ExceptionWrapper<T extends Exception>.fromMap constructor

ExceptionWrapper<T extends Exception>.fromMap({
  1. required Component child,
  2. required Map<Type, ExceptionEndpoint<Exception>> map,
  3. Key? key,
})

Implementation

ExceptionWrapper.fromMap(
    {required this.child,
    required Map<Type, ExceptionEndpoint> map,
    Key? key})
    : _map = map,
      super(key: key);