DebugResponseLogline constructor

const DebugResponseLogline({
  1. required String client,
  2. required String sdkVersion,
  3. required String specVersion,
  4. required String endpoint,
  5. required int statusCode,
  6. required String contentType,
  7. required Object error,
  8. required Uint8List body,
})

Implementation

const DebugResponseLogline({
  required this.client,
  required this.sdkVersion,
  required this.specVersion,
  required this.endpoint,
  required this.statusCode,
  required this.contentType,
  required this.error,
  required this.body,
});