ChooseOnMap constructor

const ChooseOnMap({
  1. Key? key,
  2. required dynamic onPlaceSelected(
    1. LatLng?
    ),
  3. LatLng? initialPosition,
  4. String langName = "en",
})

Implementation

const ChooseOnMap({
  Key? key,
  required this.onPlaceSelected,
  this.initialPosition,
  this.langName = "en",
}) : super(key: key);