createEvent method
Creates a new calendar event.
Implementation
Future<CalendarMonthEvent> createEvent(CalendarMonthEvent event) async {
final newEvent = await apiInterface.createEvent(event);
_cache.clear(); // Invalidate cache
return newEvent;
}