toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final checkboxInput = this.checkboxInput;
final choiceInput = this.choiceInput;
final id = this.id;
final label = this.label;
final required = this.required;
final textInput = this.textInput;
return {
'checkboxInput': ?checkboxInput,
'choiceInput': ?choiceInput,
'id': ?id,
'label': ?label,
'required': ?required,
'textInput': ?textInput,
};
}