Files
apidash/lib/terminal/models/body_chunk.dart
2025-09-28 13:55:32 +05:30

8 lines
199 B
Dart

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;
}