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