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