DicomStoreMetrics.fromJson constructor

DicomStoreMetrics.fromJson(
  1. Map json_
)

Implementation

DicomStoreMetrics.fromJson(core.Map json_)
    : this(
        blobStorageSizeBytes: json_['blobStorageSizeBytes'] as core.String?,
        instanceCount: json_['instanceCount'] as core.String?,
        name: json_['name'] as core.String?,
        seriesCount: json_['seriesCount'] as core.String?,
        structuredStorageSizeBytes:
            json_['structuredStorageSizeBytes'] as core.String?,
        studyCount: json_['studyCount'] as core.String?,
      );