Response constructor

Response({
  1. String? backendLatency,
  2. String? code,
  3. Map<String, String>? headers,
  4. String? size,
  5. String? time,
})

Implementation

Response({
  this.backendLatency,
  this.code,
  this.headers,
  this.size,
  this.time,
});