CalendarView constructor

CalendarView(
  1. int year,
  2. int month
)

Implementation

CalendarView(this.year, this.month) {
  assert(month >= 1 && month <= 12, 'Month must be between 1 and 12');
}