call method
The interceptor middleware-style function.
Implementation
FutureOr<void> call(Context context, Next next) {
// Reset the exception handler.
context[ExceptionHandler] = handler;
return Future.sync(next).onError<Object>(_createHandler(context));
}