mirror of
https://github.com/foss42/apidash.git
synced 2025-12-02 02:39:19 +08:00
8 lines
199 B
Dart
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;
|
|
}
|