FormBuilderInput.timePicker constructor
FormBuilderInput.timePicker({@required String label, @required String attribute, bool readonly: false, String hint, DateTime firstDate, DateTime lastDate, dynamic value, bool require: false, FormFieldValidator validator })
Implementation
FormBuilderInput.timePicker({
@required this.label,
@required this.attribute,
this.readonly = false,
this.hint,
this.firstDate,
this.lastDate,
this.value,
this.require = false,
this.validator,
}) {
type = FormBuilderInput.TYPE_TIME_PICKER;
}