goTo method

dynamic goTo(
  1. LatLng? latLng
)

Go To place with latLng

Implementation

goTo(LatLng? latLng) {
  if (latLng != null) {
    ctMap.center = latLng;
  }
}