CombiningSmartInterceptor constructor

CombiningSmartInterceptor([
  1. Iterable<SimpleInterceptor>? initial
])

Constructor taking an optional initial collection of interceptors to pre-fill the interceptors

Implementation

CombiningSmartInterceptor([Iterable<SimpleInterceptor>? initial]) {
  if (initial != null) {
    _interceptors.addAll(initial);
  }
}