Refactor terminal and remove duplicate code.

This commit is contained in:
Ankit Mahato
2025-09-28 13:55:32 +05:30
parent dc7aa246d7
commit 3545c75cd5
21 changed files with 91 additions and 253 deletions

View File

@@ -0,0 +1,15 @@
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;
}