buildCalendarPage method
Implementation
Widget buildCalendarPage(int position) {
if (widget.displayMode == DisplayMode.WEEKS) {
return buildCalendarPageInWeeksMode(position);
} else {
return buildCalendarPageInMonthsMode(position);
}
//DisplayMode == WEEKS
}