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 9 : TimelineChunk({ 9 : required this.events, 10 : this.prevBatch = '', 11 : this.nextBatch = '', 12 : }); 13 : }