MonthView constructor

MonthView({
  1. Key? key,
  2. required int year,
  3. required int month,
  4. int? day,
  5. required CalendarConfiguration configuration,
})

Implementation

MonthView({
  Key? key,
  required this.year,
  required this.month,
  this.day,
  required this.configuration,
}) : super(key: key);