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