LocationPickerControl constructor

const LocationPickerControl({
  1. Key? key,
  2. required FormValueChanged<IPhysicalLocation> onChange,
  3. required IPhysicalLocation initialValue,
  4. bool? enabled,
  5. Set<String>? locationTypes,
})

Implementation

const LocationPickerControl({
  Key? key,
  required this.onChange,
  required this.initialValue,
  this.enabled,
  this.locationTypes,
}) : super(key: key);