Room room(String? roomId) { if (roomId == null || roomId.isEmpty) return const Room.empty(); return mappedRooms[roomId] ?? const Room.empty(); }