FormBuilderInput.password constructor
FormBuilderInput.password({@required String label, @required String attribute, bool readonly: false, String hint, dynamic value, bool require: false, FormFieldValidator validator, dynamic min, dynamic max })
Implementation
FormBuilderInput.password({
@required this.label,
@required this.attribute,
this.readonly = false,
this.hint,
this.value,
this.require = false,
this.validator,
this.min,
this.max,
}) : assert(min == null || min is int),
assert(max == null || max is int) {
type = FormBuilderInput.TYPE_PASSWORD;
}