toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final activeTools = this.activeTools;
final author = this.author;
final content = this.content;
final eventTime = this.eventTime;
final stateDelta = this.stateDelta;
return {
'activeTools': ?activeTools,
'author': ?author,
'content': ?content,
'eventTime': ?eventTime,
'stateDelta': ?stateDelta,
};
}