InputField constructor

InputField({
  1. CheckboxInput? checkboxInput,
  2. ChoiceInput? choiceInput,
  3. String? id,
  4. TextWithTooltip? label,
  5. bool? required,
  6. TextInput? textInput,
})

Implementation

InputField({
  this.checkboxInput,
  this.choiceInput,
  this.id,
  this.label,
  this.required,
  this.textInput,
});