reset method

ChartZoomState reset()

Reset to full view without pushing history.

Implementation

ChartZoomState reset() => ChartZoomState._(
  xStart: 0,
  xEnd: 1,
  velocityX: 0,
  minWindowFraction: minWindowFraction,
  history: const [],
);