getSelectable method
Whether item should be shown as selectable.
Implementation
@override
SelectableOption getSelectable(DateTime item) {
return ((_minTime != null && item.isBefore(_minTime!)) ||
(_maxTime != null && item.isAfter(_maxTime!)))
? SelectableOption.disabled
: SelectableOption.selectable;
}