SearchNearestEntitiesResponse.fromJson constructor
Implementation
factory SearchNearestEntitiesResponse.fromJson(Map<String, dynamic> json) {
return SearchNearestEntitiesResponse(
nearestNeighbors: decode(
json['nearestNeighbors'],
NearestNeighbors.fromJson,
),
);
}