setGP method
Implementation
Future<void> setGP(String address, GeoPoint location) async {
setState(() {
_controller.text = address;
widget.controller.search = address;
widget.controller.geoPoint = location;
if (widget.onGeoPointChanged != null) {
widget.onGeoPointChanged!(location);
}
});
}