removeEvent method
Removes the event with the given id.
Implementation
void removeEvent(String id) {
_events.removeWhere((e) => e.id == id);
notifyListeners();
}
Removes the event with the given id.
void removeEvent(String id) {
_events.removeWhere((e) => e.id == id);
notifyListeners();
}