RawApiResponse constructor

const RawApiResponse({
  1. required int statusCode,
  2. required Map<String, String> headers,
  3. required String body,
  4. required Uint8List bodyBytes,
})

Implementation

const RawApiResponse({
  required this.statusCode,
  required this.headers,
  required this.body,
  required this.bodyBytes,
});