SyncClient constructor

SyncClient({
  1. required RoomClient room,
})

Implementation

SyncClient({required this.room}) {
  room.protocol.addHandler("room.sync", _handleSync);
}