scrollToYear method

void scrollToYear(
  1. int year
)

Scroll the view so that year becomes visible.

Implementation

void scrollToYear(int year) {
  _scroller!.scrollTop = (year - minDate!.year) * _yearHeight;
}