GoogleCloudAiplatformV1EvaluationInstanceMapInstance.fromJson constructor

GoogleCloudAiplatformV1EvaluationInstanceMapInstance.fromJson(
  1. Map json_
)

Implementation

GoogleCloudAiplatformV1EvaluationInstanceMapInstance.fromJson(core.Map json_)
  : this(
      mapInstance:
          (json_['mapInstance'] as core.Map<core.String, core.dynamic>?)?.map(
            (key, value) => core.MapEntry(
              key,
              GoogleCloudAiplatformV1EvaluationInstanceInstanceData.fromJson(
                value as core.Map<core.String, core.dynamic>,
              ),
            ),
          ),
    );