GoogleCloudApigeeV1QueryTimeSeriesStatsResponseSequence.fromJson constructor
GoogleCloudApigeeV1QueryTimeSeriesStatsResponseSequence.fromJson(
- Map json_
Implementation
GoogleCloudApigeeV1QueryTimeSeriesStatsResponseSequence.fromJson(
core.Map json_)
: this(
dimensions: json_.containsKey('dimensions')
? (json_['dimensions'] as core.Map<core.String, core.dynamic>)
.map(
(key, value) => core.MapEntry(
key,
value as core.String,
),
)
: null,
points: json_.containsKey('points')
? (json_['points'] as core.List)
.map((value) => value as core.List)
.toList()
: null,
);