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