jumpToDate method

void jumpToDate(
  1. dynamic date, [
  2. bool triggerChange = false
])

Sets the calendar view to the year and month of date, which can be a date string, a DateTime, or nothing.

If date is undefined, the view is set to the latest selected date, the minDate, or today’s date.

If triggerChange is set to true, the onMonthChange and onYearChange hooks are triggered, but only if the new values differ.

Implementation

external void jumpToDate(dynamic date, [bool triggerChange = false]);