FhirStoreMetrics.fromJson constructor

FhirStoreMetrics.fromJson(
  1. Map json_
)

Implementation

FhirStoreMetrics.fromJson(core.Map json_)
    : this(
        metrics: (json_['metrics'] as core.List?)
            ?.map((value) => FhirStoreMetric.fromJson(
                value as core.Map<core.String, core.dynamic>))
            .toList(),
        name: json_['name'] as core.String?,
      );