mirror of
https://github.com/foss42/apidash.git
synced 2025-12-01 18:28:25 +08:00
16 lines
350 B
Dart
16 lines
350 B
Dart
class JsLogData {
|
|
JsLogData({
|
|
required this.level,
|
|
required this.args,
|
|
this.stack,
|
|
this.context,
|
|
this.contextRequestId,
|
|
});
|
|
|
|
final String level; // log | warn | error | fatal
|
|
final List<String> args;
|
|
final String? stack;
|
|
final String? context; // preRequest | postResponse | global
|
|
final String? contextRequestId;
|
|
}
|