ListScreenshotClustersResponse.fromJson constructor

ListScreenshotClustersResponse.fromJson(
  1. Map json_
)

Implementation

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