toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final action = this.action;
final condition = this.condition;
final id = this.id;
final mostRecentVersions = this.mostRecentVersions;
return {
'action': ?action,
'condition': ?condition,
'id': ?id,
'mostRecentVersions': ?mostRecentVersions,
};
}