EventForm constructor

const EventForm({
  1. Key? key,
  2. CalendarEvent? event,
  3. required ValueChanged<CalendarEvent> onSave,
  4. VoidCallback? onCancel,
  5. DateTime? initialDate,
})

Implementation

const EventForm({
  super.key,
  this.event,
  required this.onSave,
  this.onCancel,
  this.initialDate,
});