jumpTo method
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));
}