FhirStoreMetric.fromJson constructor
FhirStoreMetric.fromJson(
- Map json_
Implementation
FhirStoreMetric.fromJson(core.Map json_)
: this(
count:
json_.containsKey('count') ? json_['count'] as core.String : null,
resourceType: json_.containsKey('resourceType')
? json_['resourceType'] as core.String
: null,
structuredStorageSizeBytes:
json_.containsKey('structuredStorageSizeBytes')
? json_['structuredStorageSizeBytes'] as core.String
: null,
);