LocationSearchField constructor
const
LocationSearchField({
- Key? key,
- required String googleApiKey,
- required ValueChanged<
Location?> onSelected, - InputDecoration? inputDecoration,
- String hintText = "Search address",
- String labelText = "Location: in person or virtual",
Implementation
const LocationSearchField({
super.key,
required this.googleApiKey,
required this.onSelected,
this.inputDecoration,
this.hintText = "Search address",
this.labelText = "Location: in person or virtual",
});