AddressInput constructor
const
AddressInput({
- Key? key,
- required TextEditingController controller,
- required String apiKey,
- String labelText = "Address",
- String? validator(
- String? value
- bool enabled = true,
- bool readOnly = false,
- dynamic onChanged()?,
- List<
TextInputFormatter> ? inputFormatters, - AutovalidateMode? autovalidateMode,
- Widget? prefix,
- Widget? prefixIcon,
- Widget? suffix,
- Widget? suffixIcon,
Implementation
const AddressInput({
super.key,
required this.controller,
required this.apiKey,
this.labelText = "Address",
this.validator,
this.enabled = true,
this.readOnly = false,
this.onChanged,
this.inputFormatters,
this.autovalidateMode,
this.prefix,
this.prefixIcon,
this.suffix,
this.suffixIcon,
});