HttpResponse constructor

HttpResponse({
  1. int? id,
  2. int? createdAt,
  3. Map<String, List<String>>? responseHeader,
  4. String? responseBody,
  5. int? responseStatusCode,
  6. String? responseStatusMessage,
  7. String? errorLog,
  8. int? duration = 0,
  9. int? responseSize,
  10. int? requestHashCode,
})

Implementation

HttpResponse({
  this.id,
  this.createdAt,
  this.responseHeader,
  this.responseBody,
  this.responseStatusCode,
  this.responseStatusMessage,
  this.errorLog,
  this.duration = 0,
  this.responseSize,
  this.requestHashCode,
});