isCoGuesting method
Implementation
bool isCoGuesting() {
return coreCoGuestState.seatList.value
.where((user) => user.userId.isNotEmpty && user.userId != coreUserState.selfInfo.userId)
.isNotEmpty;
}
bool isCoGuesting() {
return coreCoGuestState.seatList.value
.where((user) => user.userId.isNotEmpty && user.userId != coreUserState.selfInfo.userId)
.isNotEmpty;
}