setCurrentLocation method

dynamic setCurrentLocation()

Implementation

setCurrentLocation() async {
  MapResponse location = await getCurrentLocation();
  latLng(lat: location.lat, lng: location.lng, updateView: true);
}