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