CalendarEvent constructor
Implementation
CalendarEvent(this.title, this.initTime, this.endTime, {String? description})
: description = description ?? '' {
if (endTime.compareTo(initTime) < 0) {
throw ArgumentError(
'endTime < initTime: initTime:$initTime .. endTime:$endTime');
}
}