GeopointInput constructor

const GeopointInput({
  1. Key? key,
  2. required GeoPointEditingController controller,
  3. dynamic onGeoPointChanged(
    1. GeoPoint
    )?,
  4. String hintText = "",
  5. required GeoService geoService,
})

Implementation

const GeopointInput({
  super.key,
  required this.controller,
  this.onGeoPointChanged,
  this.hintText = "",
  required this.geoService,
});