refactor: split terminal models

This commit is contained in:
Udhay-Adithya
2025-09-10 12:55:42 +05:30
parent 20982b93a6
commit 3bb9fb2531
9 changed files with 182 additions and 6 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;
}