EditCalendarEventPage constructor

const EditCalendarEventPage({
  1. Key? key,
  2. Event? event,
  3. Calendar? calendar,
  4. String? title,
  5. String? description,
  6. int? startDate,
  7. int? endDate,
  8. bool? allDay,
})

Implementation

const EditCalendarEventPage(
    {super.key,
    this.event,
    this.calendar,
    this.title,
    this.description,
    this.startDate,
    this.endDate,
    this.allDay});