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