GoogleCloudAiplatformV1SearchNearestEntitiesResponse.fromJson constructor

GoogleCloudAiplatformV1SearchNearestEntitiesResponse.fromJson(
  1. Map json_
)

Implementation

GoogleCloudAiplatformV1SearchNearestEntitiesResponse.fromJson(core.Map json_)
    : this(
        nearestNeighbors: json_.containsKey('nearestNeighbors')
            ? GoogleCloudAiplatformV1NearestNeighbors.fromJson(
                json_['nearestNeighbors']
                    as core.Map<core.String, core.dynamic>)
            : null,
      );