LocationAutocomplete constructor

LocationAutocomplete({
  1. Key? key,
  2. dynamic onPlaceTap(
    1. String
    )?,
  3. required TextEditingController? addressController,
  4. FocusNode? focusNode,
  5. TextInputType? textInputType,
  6. PreferredSize? appBar,
  7. String? addressLineHintText,
  8. String? addressLineLabelText,
})

Implementation

LocationAutocomplete({
  super.key,
  this.onPlaceTap,
  required this.addressController,
  this.focusNode,
  this.textInputType,
  this.appBar,
  this.addressLineHintText,
  this.addressLineLabelText,
});