ResponseInterceptor<T> constructor

ResponseInterceptor<T>({
  1. required Future<ResponseInterceptorFlow> interceptor(
    1. Response response
    ),
  2. ResponseInterceptor<T>? next,
})

Implementation

ResponseInterceptor({required this.interceptor, this.next});