useNothing function

ResponseInterceptor useNothing()

Implementation

ResponseInterceptor useNothing() {
  return ResponseInterceptor(interceptor: (Response response) async {
    return ResponseInterceptorFlow(response, terminate: false, startAgain: false);
  });
}