GetPublicRoomsResponse constructor

GetPublicRoomsResponse({
  1. required List<PublicRoomsChunk> chunk,
  2. String? nextBatch,
  3. String? prevBatch,
  4. int? totalRoomCountEstimate,
})

Implementation

GetPublicRoomsResponse({
  required this.chunk,
  this.nextBatch,
  this.prevBatch,
  this.totalRoomCountEstimate,
});