HttpLinkResponseContext constructor

const HttpLinkResponseContext({
  1. required int statusCode,
  2. Map<String, String>? headers,
  3. Map<String, List<String>>? rawHeaders,
})

Implementation

const HttpLinkResponseContext({
  required this.statusCode,
  Map<String, String>? headers,
  Map<String, List<String>>? rawHeaders,
})  : _headers = headers,
      _rawHeaders = rawHeaders;