addRequestModifier<T> method

void addRequestModifier<T>(
  1. RequestModifier<T> interceptor
)

Implementation

void addRequestModifier<T>(RequestModifier<T> interceptor) {
  _requestModifiers.add(interceptor as RequestModifier);
}