toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final event = this.event;
final eventDateTime = this.eventDateTime;
final itemAttribute = this.itemAttribute;
return {
'event': ?event,
'eventDateTime': ?eventDateTime,
'itemAttribute': ?itemAttribute,
};
}