updateSelectedMonth method

void updateSelectedMonth(
  1. DateTime? newSelectedDate
)

Implementation

void updateSelectedMonth(DateTime? newSelectedDate) {
  selectedMonth.value = newSelectedDate != null ? PickerPlusDateUtilsX.monthOnly(newSelectedDate) : null;
}