JoinedRoomUpdate constructor

JoinedRoomUpdate({
  1. RoomSummary? summary,
  2. List<MatrixEvent>? state,
  3. TimelineUpdate? timeline,
  4. List<BasicRoomEvent>? ephemeral,
  5. List<BasicRoomEvent>? accountData,
  6. UnreadNotificationCounts? unreadNotifications,
})

Implementation

JoinedRoomUpdate({
  this.summary,
  this.state,
  this.timeline,
  this.ephemeral,
  this.accountData,
  this.unreadNotifications,
});