EventForm constructor
const
EventForm({
- Key? key,
- CalendarEvent? event,
- required ValueChanged<
CalendarEvent> onSave, - VoidCallback? onCancel,
- DateTime? initialDate,
Implementation
const EventForm({
super.key,
this.event,
required this.onSave,
this.onCancel,
this.initialDate,
});