SimpleAddressSearchField constructor

const SimpleAddressSearchField({
  1. Key? key,
  2. String? hintText = "Search address",
  3. String? labelText,
  4. String languageCode = "en",
  5. List? regionCodes,
  6. TextEditingController? textEditingController,
  7. InputDecoration? inputDecoration,
  8. String? validator(
    1. dynamic value
    )?,
  9. int minInputLength = 3,
  10. required ValueChanged<Address?> onSelected,
  11. required String googleApiKey,
})

Implementation

const SimpleAddressSearchField({
  super.key,
  this.hintText = "Search address",
  this.labelText,
  this.languageCode = "en",
  this.regionCodes,
  this.textEditingController,
  this.inputDecoration,
  this.validator,
  this.minInputLength = 3,
  required this.onSelected,
  required this.googleApiKey,
});