jumpTo method

void jumpTo(
  1. DateTime date
)
inherited

Jumps the current page to the given date's page.

Contract

Throws AssertionError if date is not within [start, end].

Implementation

void jumpTo(DateTime date) {
  assert(debugCheckInclusiveDateRange(start, date, end));
  _controller.jumpToPage(_from(date));
}