toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final exportedArtifactCount = this.exportedArtifactCount;
final sizeInBytes = this.sizeInBytes;
final totalArtifactCount = this.totalArtifactCount;
return {
'exportedArtifactCount': ?exportedArtifactCount,
'sizeInBytes': ?sizeInBytes,
'totalArtifactCount': ?totalArtifactCount,
};
}