RequestLog constructor
RequestLog({
- required String timestamp,
- required String method,
- required String path,
- required String remoteAddr,
- required String userAgent,
- required String contentType,
- required Map<
String, String> headers, - required Map<
String, String> query, - required String body,
- required int statusCode,
- required int durationMs,
Implementation
RequestLog({
required this.timestamp,
required this.method,
required this.path,
required this.remoteAddr,
required this.userAgent,
required this.contentType,
required this.headers,
required this.query,
required this.body,
required this.statusCode,
required this.durationMs,
});