next method

void next(
  1. RequestOptions requestOptions
)

Continue to call the next request interceptor.

Implementation

void next(RequestOptions requestOptions) {
  _completer.complete(InterceptorState<RequestOptions>(requestOptions));
  _processNextInQueue?.call();
}