GoogleCloudAiplatformV1FindNeighborsResponse.fromJson constructor
GoogleCloudAiplatformV1FindNeighborsResponse.fromJson(
- Map json_
Implementation
GoogleCloudAiplatformV1FindNeighborsResponse.fromJson(core.Map json_)
: this(
nearestNeighbors: json_.containsKey('nearestNeighbors')
? (json_['nearestNeighbors'] as core.List)
.map((value) =>
GoogleCloudAiplatformV1FindNeighborsResponseNearestNeighbors
.fromJson(
value as core.Map<core.String, core.dynamic>))
.toList()
: null,
);