moveTo method

void moveTo(
  1. LatLng position, {
  2. double zoom = 15.0,
})

Implementation

void moveTo(LatLng position, {double zoom = 15.0}) {
  _internalMapController?.move(position, zoom);
}