toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final description = this.description;
final name = this.name;
final termsPair = this.termsPair;
final termsSet = this.termsSet;
return {
'description': ?description,
'name': ?name,
'termsPair': ?termsPair,
'termsSet': ?termsSet,
};
}