pendingParticipantList property

List<ParticipantAttendanceData> get pendingParticipantList

Implementation

List<ParticipantAttendanceData> get pendingParticipantList =>
    _pendingParticipantList;
set pendingParticipantList (List<ParticipantAttendanceData> newList)

Implementation

set pendingParticipantList(List<ParticipantAttendanceData> newList) {
  _pendingParticipantList = newList;
  notifyListeners();
}