UApiLogJson constructor

UApiLogJson({
  1. required String method,
  2. String? queryString,
  3. String? requestBody,
  4. String? responseBody,
  5. String? requestHeaders,
  6. String? responseHeaders,
  7. String? userAgent,
  8. String? host,
  9. String? userName,
  10. String? userEmail,
  11. String? userRoles,
  12. String? exceptionType,
  13. String? exceptionMessage,
  14. String? stackTrace,
  15. int requestSizeBytes = 0,
  16. int responseSizeBytes = 0,
  17. String? detail1,
  18. String? detail2,
})

Implementation

UApiLogJson({
  required this.method,
  this.queryString,
  this.requestBody,
  this.responseBody,
  this.requestHeaders,
  this.responseHeaders,
  this.userAgent,
  this.host,
  this.userName,
  this.userEmail,
  this.userRoles,
  this.exceptionType,
  this.exceptionMessage,
  this.stackTrace,
  this.requestSizeBytes = 0,
  this.responseSizeBytes = 0,
  this.detail1,
  this.detail2,
});