DebugResponse constructor

DebugResponse({
  1. required int code,
  2. required String message,
  3. required Map<String, List<String>> headers,
  4. String? encodedBody,
  5. String? bodyMimeType,
})

Implementation

DebugResponse({
  required this.code,
  required this.message,
  required this.headers,
  this.encodedBody,
  this.bodyMimeType,
});