CalendarEventOptions constructor

CalendarEventOptions({
  1. required String title,
  2. required DateTime startDate,
  3. required DateTime endDate,
  4. String? description,
  5. String? location,
  6. String? url,
  7. String? organizer,
})

Implementation

CalendarEventOptions({
  required this.title,
  required this.startDate,
  required this.endDate,
  this.description,
  this.location,
  this.url,
  this.organizer,
});