UApiLogJson constructor
UApiLogJson({
- required String method,
- String? queryString,
- String? requestBody,
- String? responseBody,
- String? requestHeaders,
- String? responseHeaders,
- String? userAgent,
- String? host,
- String? userName,
- String? userEmail,
- String? userRoles,
- String? exceptionType,
- String? exceptionMessage,
- String? stackTrace,
- int requestSizeBytes = 0,
- int responseSizeBytes = 0,
- String? detail1,
- 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,
});