Request constructor

Request({
  1. required int timestamp,
  2. String? url,
  3. String? method,
  4. int? dataSent,
  5. int? dataReceived,
  6. int? statusCode,
  7. int? duration,
  8. String? body,
  9. String? request,
  10. String? subCode,
  11. String? message,
  12. dynamic headers,
})

Implementation

Request({
  required this.timestamp,
  this.url,
  this.method,
  this.dataSent,
  this.dataReceived,
  this.statusCode,
  this.duration,
  this.body,
  this.request,
  this.subCode,
  this.message,
  this.headers,
});