NiceAccessibleFormField constructor

const NiceAccessibleFormField({
  1. Key? key,
  2. required Widget child,
  3. required String label,
  4. String? hint,
  5. String? errorText,
  6. bool isRequired = false,
  7. bool isEnabled = true,
  8. String? currentValue,
  9. int? characterCount,
  10. 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,
});