EventCard constructor

const EventCard({
  1. Key? key,
  2. required CalendarEvent event,
  3. VoidCallback? onTap,
  4. VoidCallback? onLongPress,
})

Implementation

const EventCard({
  super.key,
  required this.event,
  this.onTap,
  this.onLongPress,
});