toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final artifact = this.artifact;
final eventTime = this.eventTime;
final execution = this.execution;
final labels = this.labels;
final type = this.type;
return {
'artifact': ?artifact,
'eventTime': ?eventTime,
'execution': ?execution,
'labels': ?labels,
'type': ?type,
};
}