GmhSearchField constructor

const GmhSearchField({
  1. Key? key,
  2. GmhAddressData? selectedValue,
  3. TextFormField textFieldBuilder(
    1. FocusNode focusNode,
    2. TextEditingController controller,
    3. void onChanged(
      1. String
      )?
    )?,
  4. GmhResultViewOptions? resultViewOptions,
  5. required dynamic onSelected(
    1. GmhAddressData?
    ),
  6. required GmhSearchParams searchParams,
})

Auto-complete places search field

Implementation

const GmhSearchField({
  super.key,
  this.selectedValue,
  this.textFieldBuilder,
  this.resultViewOptions,
  required this.onSelected,
  required this.searchParams,
});