CalendarEvent constructor

CalendarEvent({
  1. required String eventName,
  2. required DateTime eventDate,
  3. required TextStyle eventTextStyle,
  4. Color eventBackgroundColor = Colors.blue,
  5. String? eventID,
})

Implementation

CalendarEvent({
  required this.eventName,
  required this.eventDate,
  required this.eventTextStyle,
  this.eventBackgroundColor = Colors.blue,
  this.eventID,
});