monthForIndex method

XBCalendarMonth monthForIndex(
  1. int index
)

Implementation

XBCalendarMonth monthForIndex(int index) {
  if (_monthForIndexMap.isEmpty) {
    buildMonthIndexCache();
  }
  return _monthForIndexMap[index]!;
}