collectInactiveParticipant method
Implementation
void collectInactiveParticipant(List<ParticipantAttendanceData>? data) {
List<ParticipantAttendanceData> tempList = [];
if (data != null) {
for (var participant in data) {
if (participant.participantStatus?.toLowerCase() != 'joined') {
tempList.add(participant);
}
}
}
pendingParticipantList = tempList;
}