activeParticipantCount property
int
get
activeParticipantCount
Count of active (online) participants.
Implementation
int get activeParticipantCount =>
participants.where((p) => p.isOnline).length;
Count of active (online) participants.
int get activeParticipantCount =>
participants.where((p) => p.isOnline).length;