next method

void next(
  1. Response response
)

Continue to call the next response interceptor.

Implementation

void next(Response response) {
  _completer.complete(
    InterceptorState<Response>(response),
  );
  _processNextInQueue?.call();
}