toJson method

Map<String, dynamic> toJson()

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,
  };
}