forDelete static method

CalendarEvent forDelete(
  1. String calendarId
)

Implementation

static CalendarEvent forDelete(String calendarId) {
  return CalendarEvent(
      calendarId: calendarId,
      title: '',
      description: '',
      location: '',
      start: DateTime.now(),
      end: DateTime.now());
}