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,6 @@
class SystemLogData {
SystemLogData({required this.category, required this.message, this.stack});
final String category; // ui | provider | io | storage | unknown
final String message;
final String? stack;
}