HttpClientResponse constructor

HttpClientResponse({
  1. required int statusCode,
  2. required Map<String, String> headers,
  3. required Uint8List bodyBytes,
  4. int elapsedMs = 0,
})

Implementation

HttpClientResponse({
  required this.statusCode,
  required this.headers,
  required this.bodyBytes,
  this.elapsedMs = 0,
});