setCurrentMonth method
Implementation
void setCurrentMonth(DateTime target, SelectType type) {
if (target.year == year && target.month == month) {
dates.singleWhere((date) => date.date == target.day).isSelected = type;
}
}
void setCurrentMonth(DateTime target, SelectType type) {
if (target.year == year && target.month == month) {
dates.singleWhere((date) => date.date == target.day).isSelected = type;
}
}