CalendarEvent constructor
const
CalendarEvent({
- required String title,
- required DateTime startDate,
- String? description,
- DateTime? endDate,
- String? location,
- bool isAllDay = false,
- String? timeZone,
- String? url,
- AndroidEventSettings? androidSettings,
- IosEventSettings? iosSettings,
Implementation
const CalendarEvent({
required this.title,
required this.startDate,
this.description,
this.endDate,
this.location,
this.isAllDay = false,
this.timeZone,
this.url,
this.androidSettings,
this.iosSettings,
});