SimpleAddressSearchField constructor
const
SimpleAddressSearchField({
- Key? key,
- String? hintText = "Search address",
- String? labelText,
- String languageCode = "en",
- List? regionCodes,
- TextEditingController? textEditingController,
- InputDecoration? inputDecoration,
- String? validator(
- dynamic value
- int minInputLength = 3,
- required ValueChanged<
Address?> onSelected, - 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,
});