Event constructor
Event({
- required String title,
- String? description,
- String? location,
- required DateTime startDate,
- required DateTime endDate,
- String? timeZone,
- bool allDay = false,
- IOSParams iosParams = const IOSParams(),
- AndroidParams androidParams = const AndroidParams(),
- Recurrence? recurrence,
Implementation
Event({
required this.title,
this.description,
this.location,
required this.startDate,
required this.endDate,
this.timeZone,
this.allDay = false,
this.iosParams = const IOSParams(),
this.androidParams = const AndroidParams(),
this.recurrence,
});