moveTo method

void moveTo(
  1. KinLatLng center, {
  2. double? zoom,
})

Implementation

void moveTo(KinLatLng center, {double? zoom}) {
  _center = center;
  if (zoom != null) _zoom = zoom.clamp(1.0, 18.0);
  notifyListeners();
}