isCoGuesting method
Implementation
bool isCoGuesting() {
final liveID = LiveListStore.shared.liveState.currentLive.value.liveID;
if (liveID.isEmpty) return false;
CoGuestStore coGuestStore = CoGuestStore.create(liveID);
return coGuestStore.coGuestState.connected.value
.where((user) => user.userID.isNotEmpty && user.userID != TUIRoomEngine.getSelfInfo().userId)
.isNotEmpty;
}