jumpToSelection method
void
jumpToSelection()
Implementation
void jumpToSelection() {
assert(_datePickerState != null,
'DatePickerController is not attached to any DatePicker View.');
// jump to the current Date
_datePickerState!._controller
.jumpTo(_calculateDateOffset(_datePickerState!._currentDate!));
}