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

11 lines
272 B
Dart

import 'package:matrix/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 = ''});
}