CalendarEvent(- {String? eventId,
- String? title = '',
- String? description = '',
- required DateTime? startDate,
- required DateTime? endDate,
- String? location,
- int? duration,
- bool? isAllDay = false,
- bool? hasAlarm = false,
- String? url,
- Attendees? attendees,
- Reminder? reminder}
)
Implementation
CalendarEvent({
this.eventId,
this.title = '',
this.description = '',
required this.startDate,
required this.endDate,
this.location,
this.duration,
this.isAllDay = false,
this.hasAlarm = false,
this.url,
this.attendees,
this.reminder,
});