WizardTextFieldArguments constructor

WizardTextFieldArguments({
  1. bool? enableValidate,
  2. required Key? keyTextField,
  3. required FocusNode focusNode,
  4. required TextEditingController textEditingController,
  5. String? label,
  6. String? typeInput,
  7. int? maxLength,
  8. Widget? icon,
  9. TextDirection? textDirection,
  10. TextInputType? textInputType,
  11. String? helperText,
  12. required bool enable,
  13. int? maxLine,
  14. String? regex,
  15. bool? hasMandatory,
  16. double? height,
  17. required dynamic valueChanged(),
  18. dynamic validator()?,
})

Implementation

WizardTextFieldArguments({this.enableValidate, required this.keyTextField, required this.focusNode, required this.textEditingController, this.label, this.typeInput, this.maxLength, this.icon, this.textDirection, this.textInputType, this.helperText, required this.enable, this.maxLine, this.regex, this.hasMandatory, this.height, required this.valueChanged, this.validator});