ListClustersResponse.fromJson constructor
ListClustersResponse.fromJson(
- Map json_
Implementation
ListClustersResponse.fromJson(core.Map json_)
: this(
clusters:
(json_['clusters'] as core.List?)
?.map(
(value) => Cluster.fromJson(
value as core.Map<core.String, core.dynamic>,
),
)
.toList(),
missingZones:
(json_['missingZones'] as core.List?)
?.map((value) => value as core.String)
.toList(),
);