toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final blobStorageSizeBytes = this.blobStorageSizeBytes;
final instanceCount = this.instanceCount;
final name = this.name;
final seriesCount = this.seriesCount;
final structuredStorageSizeBytes = this.structuredStorageSizeBytes;
final studyCount = this.studyCount;
return {
'blobStorageSizeBytes': ?blobStorageSizeBytes,
'instanceCount': ?instanceCount,
'name': ?name,
'seriesCount': ?seriesCount,
'structuredStorageSizeBytes': ?structuredStorageSizeBytes,
'studyCount': ?studyCount,
};
}