toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final actions = this.actions;
final author = this.author;
final content = this.content;
final errorCode = this.errorCode;
final errorMessage = this.errorMessage;
final eventMetadata = this.eventMetadata;
final invocationId = this.invocationId;
final name = this.name;
final timestamp = this.timestamp;
return {
'actions': ?actions,
'author': ?author,
'content': ?content,
'errorCode': ?errorCode,
'errorMessage': ?errorMessage,
'eventMetadata': ?eventMetadata,
'invocationId': ?invocationId,
'name': ?name,
'timestamp': ?timestamp,
};
}