ExceptionWrapper<T extends Exception> constructor
ExceptionWrapper<T extends Exception> ({
- required Component child,
- required ExceptionEndpoint<
T> exceptionEndpoint, - Key? key,
Implementation
factory ExceptionWrapper(
{required Component child,
required ExceptionEndpoint<T> exceptionEndpoint,
Key? key}) {
return ExceptionWrapper.fromMap(child: child, map: {T: exceptionEndpoint});
}