YKInterceptorResponse constructor

YKInterceptorResponse({
  1. dynamic data,
  2. int statusCode = 0,
  3. Map<String, List<String>> headers = const {},
  4. required YKNetworkingRequest request,
})

Implementation

YKInterceptorResponse({
  this.data,
  this.statusCode = 0,
  this.headers = const {},
  required this.request,
});