Monitor constructor

Monitor({
  1. int? id,
  2. String? url,
  3. String? scheme,
  4. String? host,
  5. String? path,
  6. String? query,
  7. String? protocol,
  8. String? method,
  9. String? requestHeaders,
  10. String? requestBody,
  11. String? requestContentType,
  12. int? requestContentLength,
  13. int? requestDate,
  14. String? responseHeaders,
  15. String? responseBody,
  16. String? responseContentType,
  17. int? responseContentLength,
  18. int? responseDate,
  19. String? responseTlsVersion,
  20. String? responseCipherSuite,
  21. int? responseCode,
  22. String? responseMessage,
  23. String? error,
  24. String? curl,
  25. String? source,
  26. int? outerId,
})

Implementation

Monitor({
  this.id,
  this.url,
  this.scheme,
  this.host,
  this.path,
  this.query,
  this.protocol,
  this.method,
  this.requestHeaders,
  this.requestBody,
  this.requestContentType,
  this.requestContentLength,
  this.requestDate,
  this.responseHeaders,
  this.responseBody,
  this.responseContentType,
  this.responseContentLength,
  this.responseDate,
  this.responseTlsVersion,
  this.responseCipherSuite,
  this.responseCode,
  this.responseMessage,
  this.error,
  this.curl,
  this.source,
  this.outerId,
});