AddressTextField constructor
const
AddressTextField({
- Key? key,
- TextEditingController? controller,
- String? initialValue,
- required String label,
- required String hint,
- IconData? prefixIcon,
- Widget? suffixIcon,
- bool enabled = true,
- ValueChanged<
String> ? onChanged, - String? errorText,
- ValueChanged<
String> ? onErrorCleared, - TextInputType? keyboardType,
- int? maxLines = 1,
- int? maxLength,
Implementation
const AddressTextField({
super.key,
this.controller,
this.initialValue,
required this.label,
required this.hint,
this.prefixIcon,
this.suffixIcon,
this.enabled = true,
this.onChanged,
this.errorText,
this.onErrorCleared,
this.keyboardType,
this.maxLines = 1,
this.maxLength,
});