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