toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final defaultValue = this.defaultValue;
final description = this.description;
final entry = this.entry;
final entryValue = this.entryValue;
final key = this.key;
final nestedRestriction = this.nestedRestriction;
final restrictionType = this.restrictionType;
final title = this.title;
return {
'defaultValue': ?defaultValue,
'description': ?description,
'entry': ?entry,
'entryValue': ?entryValue,
'key': ?key,
'nestedRestriction': ?nestedRestriction,
'restrictionType': ?restrictionType,
'title': ?title,
};
}