updateMark method

dynamic updateMark(
  1. List<DateTime>? markDates
)

Implementation

updateMark(List<DateTime>? markDates) {
  for (var month in months) {
    month.updateMark(markDates);
  }
}