toJson method

Map<String, dynamic> toJson()

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,
  };
}