toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final controlType = this.controlType;
final name = this.name;
final onChangeAction = this.onChangeAction;
final selected = this.selected;
final value = this.value;
return {
'controlType': ?controlType,
'name': ?name,
'onChangeAction': ?onChangeAction,
'selected': ?selected,
'value': ?value,
};
}