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