toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final checkboxInputValue = this.checkboxInputValue;
final choiceInputValue = this.choiceInputValue;
final inputFieldId = this.inputFieldId;
final textInputValue = this.textInputValue;
return {
'checkboxInputValue': ?checkboxInputValue,
'choiceInputValue': ?choiceInputValue,
'inputFieldId': ?inputFieldId,
'textInputValue': ?textInputValue,
};
}