GoogleCloudAiplatformV1Explanation.fromJson constructor

GoogleCloudAiplatformV1Explanation.fromJson(
  1. Map json_
)

Implementation

GoogleCloudAiplatformV1Explanation.fromJson(core.Map json_)
    : this(
        attributions: json_.containsKey('attributions')
            ? (json_['attributions'] as core.List)
                .map((value) => GoogleCloudAiplatformV1Attribution.fromJson(
                    value as core.Map<core.String, core.dynamic>))
                .toList()
            : null,
        neighbors: json_.containsKey('neighbors')
            ? (json_['neighbors'] as core.List)
                .map((value) => GoogleCloudAiplatformV1Neighbor.fromJson(
                    value as core.Map<core.String, core.dynamic>))
                .toList()
            : null,
      );