useNothing function

RequestInterceptor useNothing()

Implementation

RequestInterceptor useNothing() {
  return RequestInterceptor(interceptor: (Request request) async {
    return RequestInterceptorFlow(request, terminate: false);
  });
}