FormBuilderInput.textField constructor

FormBuilderInput.textField({@required String label, @required String type, @required String attribute, String hint, dynamic value, bool require: false, FormFieldValidator validator, num min, num max })

Implementation

FormBuilderInput.textField({
  @required this.label,
  @required this.type,
  @required this.attribute,
  this.hint,
  this.value,
  this.require = false,
  this.validator,
  this.min,
  this.max,
  //TODO: Include maxLines for multiline text
});