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