ModePickerTextHandler typedef

ModePickerTextHandler = String? Function({bool? isMonthPicker, required DateTime monthDate})

Handler for the text displayed in the mode picker

isMonthPicker will be true if function is called for month picker text

Implementation

typedef ModePickerTextHandler = String? Function(
    {required DateTime monthDate, bool? isMonthPicker});