GoogleCloudAiplatformV1ToolNameMatchResults.fromJson constructor

GoogleCloudAiplatformV1ToolNameMatchResults.fromJson(
  1. Map json_
)

Implementation

GoogleCloudAiplatformV1ToolNameMatchResults.fromJson(core.Map json_)
    : this(
        toolNameMatchMetricValues:
            (json_['toolNameMatchMetricValues'] as core.List?)
                ?.map((value) =>
                    GoogleCloudAiplatformV1ToolNameMatchMetricValue.fromJson(
                        value as core.Map<core.String, core.dynamic>))
                .toList(),
      );