Line data Source code
1 : import 'package:matrix/matrix.dart'; 2 : 3 : class TimelineChunk { 4 : String prevBatch; // pos of the first event of the database timeline chunk 5 : String nextBatch; 6 : 7 : List<Event> events; 8 8 : TimelineChunk( 9 : {required this.events, this.prevBatch = '', this.nextBatch = ''}); 10 : }