selectDay function

void selectDay(
  1. String? date
)

Callback when a day is selected (alternative to openDayDetail).

This is a simpler callback that only receives the date. Use this when you only need to know which day was selected, without needing the full day details.

Implementation

void selectDay(String? date) {
  debugPrint(date.toString());
}