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,7 @@
class BodyChunk {
BodyChunk({required this.ts, required this.text, required this.sizeBytes});
final DateTime ts;
final String text; // preview text (could be partial)
final int sizeBytes;
}