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