operator + method

RequestInterceptor operator +(
  1. dynamic next
)

Implementation

RequestInterceptor operator +(next) {
  this.next = next;
  return this;
}