GoogleCloudAiplatformV1GroundingMetadata.fromJson constructor

GoogleCloudAiplatformV1GroundingMetadata.fromJson(
  1. Map json_
)

Implementation

GoogleCloudAiplatformV1GroundingMetadata.fromJson(core.Map json_)
    : this(
        searchEntryPoint: json_.containsKey('searchEntryPoint')
            ? GoogleCloudAiplatformV1SearchEntryPoint.fromJson(
                json_['searchEntryPoint']
                    as core.Map<core.String, core.dynamic>)
            : null,
        webSearchQueries: json_.containsKey('webSearchQueries')
            ? (json_['webSearchQueries'] as core.List)
                .map((value) => value as core.String)
                .toList()
            : null,
      );