toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final checked = this.checked;
final childListItems = this.childListItems;
final text = this.text;
return {
'checked': ?checked,
'childListItems': ?childListItems,
'text': ?text,
};
}