GoogleCloudApigeeV1StatsHostStats.fromJson constructor
GoogleCloudApigeeV1StatsHostStats.fromJson(
- Map json_
Implementation
GoogleCloudApigeeV1StatsHostStats.fromJson(core.Map json_)
: this(
dimensions:
(json_['dimensions'] as core.List?)
?.map(
(value) => GoogleCloudApigeeV1DimensionMetric.fromJson(
value as core.Map<core.String, core.dynamic>,
),
)
.toList(),
metrics:
(json_['metrics'] as core.List?)
?.map(
(value) => GoogleCloudApigeeV1Metric.fromJson(
value as core.Map<core.String, core.dynamic>,
),
)
.toList(),
name: json_['name'] as core.String?,
);