getTotal method

int getTotal()

Implementation

int getTotal() {
  var total = currAttendees.value.keys
      .map((k) => currAttendees.value[k])
      .whereType<AttendeeModel>()
      .where((e) => !_isAttendeeContent(e.attendeeId))
      .length;
  return total;
}