StorageClient constructor

StorageClient({
  1. required RoomClient room,
})

Implementation

StorageClient({required this.room}) {
  room.protocol.addHandler("storage.file.deleted", _handleFileDeleted);
  room.protocol.addHandler("storage.file.updated", _handleFileUpdated);
}