getRoomState method

Future<RoomState?> getRoomState(
  1. JID roomJid
)

Implementation

Future<RoomState?> getRoomState(JID roomJid) async {
  return _cacheLock.synchronized(() => _mucRoomCache[roomJid]);
}