animateZoomAndPanTo method
void
animateZoomAndPanTo({})
Implementation
void animateZoomAndPanTo({
required Offset targetOffset,
required double targetZoom,
Duration duration = const Duration(milliseconds: 300),
Curve curve = Curves.easeInOut,
}) {
_state?._animateZoomAndPanTo(
targetOffset: targetOffset,
targetZoom: targetZoom,
duration: duration,
curve: curve,
);
}