matrix-dart-sdk/lib/src/models/timeline_chunk.dart

11 lines
263 B
Dart

import '../../matrix.dart';
class TimelineChunk {
String prevBatch; // pos of the first event of the database timeline chunk
String nextBatch;
List<Event> events;
TimelineChunk(
{required this.events, this.prevBatch = '', this.nextBatch = ''});
}