Clustering.fromJson constructor

Clustering.fromJson(
  1. Map json_
)

Implementation

Clustering.fromJson(core.Map json_)
    : this(
        fields: json_.containsKey('fields')
            ? (json_['fields'] as core.List)
                .map((value) => value as core.String)
                .toList()
            : null,
      );