toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final eventName = this.eventName;
final projectId = this.projectId;
final propertyId = this.propertyId;
final propertyName = this.propertyName;
return {
'eventName': ?eventName,
'projectId': ?projectId,
'propertyId': ?propertyId,
'propertyName': ?propertyName,
};
}