Response constructor

Response({
  1. String? contentType,
  2. String? body,
  3. Uint8List? bodyBytes,
  4. int? status,
  5. Map<String, String>? headers,
})

Implementation

Response({this.contentType, this.body, this.bodyBytes, this.status, this.headers});