toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final label = this.label;
final operatorName = this.operatorName;
final property = this.property;
return {
'label': ?label,
'operatorName': ?operatorName,
'property': ?property,
};
}