LocationSearchField constructor

const LocationSearchField({
  1. Key? key,
  2. required String googleApiKey,
  3. required ValueChanged<Location?> onSelected,
  4. InputDecoration? inputDecoration,
  5. String hintText = "Search address",
  6. 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",
});