NiceAccessibleFormField constructor
const
NiceAccessibleFormField({ - Key? key,
- required Widget child,
- required String label,
- String? hint,
- String? errorText,
- bool isRequired = false,
- bool isEnabled = true,
- String? currentValue,
- int? characterCount,
- int? maxCharacters,
})
Implementation
const NiceAccessibleFormField({
super.key,
required this.child,
required this.label,
this.hint,
this.errorText,
this.isRequired = false,
this.isEnabled = true,
this.currentValue,
this.characterCount,
this.maxCharacters,
});