ClusterInfo.fromJson constructor

ClusterInfo.fromJson(
  1. Map json_
)

Implementation

ClusterInfo.fromJson(core.Map json_)
    : this(
        centroidId: json_['centroidId'] as core.String?,
        clusterRadius: (json_['clusterRadius'] as core.num?)?.toDouble(),
        clusterSize: json_['clusterSize'] as core.String?,
      );