GoogleCloudAiplatformV1ModelExplanation.fromJson constructor

GoogleCloudAiplatformV1ModelExplanation.fromJson(
  1. Map json_
)

Implementation

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