FormBuilderInput.dropdown constructor
FormBuilderInput.dropdown({@required String label, @required List<FormBuilderInputOption> options, @required String attribute, bool readonly: false, String hint, dynamic value, bool require: false, FormFieldValidator validator })
Implementation
FormBuilderInput.dropdown({
@required this.label,
@required this.options,
@required this.attribute,
this.readonly = false,
this.hint,
this.value,
this.require = false,
this.validator,
}) {
type = FormBuilderInput.TYPE_DROPDOWN;
}