onAttendeesPressed method
void
onAttendeesPressed()
Implementation
void onAttendeesPressed() {
if (attendeesCount.value == 0) {
return;
}
showConferenceBottomSheet(
AttendeesSheet(
attendeesList: attendeesList,
scrollController: scrollController,
length: attendeesCount.value,
),
);
}