CalendarEvent constructor

CalendarEvent({
  1. required String title,
  2. Color? color,
  3. DateTime? start,
  4. DateTime? end,
  5. EventBarDecoration? decoration,
  6. EventBarSize eventBarSize = EventBarSize.small,
})

Implementation

CalendarEvent(
    {required this.title,
    this.color,
    this.start,
    this.end,
    this.decoration,
    this.eventBarSize = EventBarSize.small});