PublicRoomsChunk constructor

PublicRoomsChunk({
  1. Uri? avatarUrl,
  2. String? canonicalAlias,
  3. required bool guestCanJoin,
  4. String? joinRule,
  5. String? name,
  6. required int numJoinedMembers,
  7. required String roomId,
  8. String? roomType,
  9. String? topic,
  10. required bool worldReadable,
})

Implementation

PublicRoomsChunk({
  this.avatarUrl,
  this.canonicalAlias,
  required this.guestCanJoin,
  this.joinRule,
  this.name,
  required this.numJoinedMembers,
  required this.roomId,
  this.roomType,
  this.topic,
  required this.worldReadable,
});