MonthView constructor

const MonthView({
  1. Key? key,
  2. DateTime? initialMonth,
  3. CalendarConfig config = const CalendarConfig(),
  4. List<CalendarEvent> events = const [],
  5. ValueChanged<DateTime>? onDateTap,
  6. ValueChanged<DateTime>? onMonthChanged,
})

Implementation

const MonthView({
  super.key,
  this.initialMonth,
  this.config = const CalendarConfig(),
  this.events = const [],
  this.onDateTap,
  this.onMonthChanged,
});