move method

  1. @override
void move(
  1. LatLng? center,
  2. double zoom, {
  3. bool hasGesture = false,
})
override

Moves the map to a specific location and zoom level

Implementation

@override
void move(LatLng? center, double zoom, {bool hasGesture = false}) {
  _state!.move(center, zoom, hasGesture: hasGesture);
}