activeParticipantCount property

int get activeParticipantCount

Count of active (online) participants.

Implementation

int get activeParticipantCount =>
    participants.where((p) => p.isOnline).length;