FormBuilderInput.timePicker constructor

FormBuilderInput.timePicker({@required String label, @required String attribute, bool readonly: false, String hint, dynamic value, bool require: false, FormFieldValidator validator })

Implementation

FormBuilderInput.timePicker({
  @required this.label,
  @required this.attribute,
  this.readonly = false,
  this.hint,
  this.value,
  this.require = false,
  this.validator,
}) {
  type = FormBuilderInput.TYPE_TIME_PICKER;
}