updateSelectState method

dynamic updateSelectState(
  1. List<DateTime> selectedDates
)

Implementation

updateSelectState(List<DateTime> selectedDates) {
  for (var month in months) {
    month.updateSelectState(selectedDates);
  }
}