StoreLayoutClustersListResponse.fromJson constructor

StoreLayoutClustersListResponse.fromJson(
  1. Map json_
)

Implementation

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