CalendarEvent constructor

CalendarEvent({
  1. required String calendarId,
  2. required String title,
  3. required String description,
  4. required String location,
  5. required DateTime start,
  6. required DateTime end,
  7. String? timeZone,
  8. int? allDay,
  9. EventRecurrence? recurrence,
  10. AndroidParams? androidParams,
  11. IosParams? iosParams,
  12. String? eventId,
})

Implementation

CalendarEvent(
    {required this.calendarId,
    required this.title,
    required this.description,
    required this.location,
    required this.start,
    required this.end,
    this.timeZone,
    this.allDay,
    this.recurrence,
    this.androidParams,
    this.iosParams,
    this.eventId});