toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final actions = this.actions;
final description = this.description;
final impact = this.impact;
final title = this.title;
return {
'actions': ?actions,
'description': ?description,
'impact': ?impact,
'title': ?title,
};
}