InputValue constructor

InputValue({
  1. InputValueCheckboxInputValue? checkboxInputValue,
  2. InputValueChoiceInputValue? choiceInputValue,
  3. String? inputFieldId,
  4. InputValueTextInputValue? textInputValue,
})

Implementation

InputValue({
  this.checkboxInputValue,
  this.choiceInputValue,
  this.inputFieldId,
  this.textInputValue,
});