GoogleCloudAiplatformV1EvaluationInstanceAgentDataEvents.fromJson constructor

GoogleCloudAiplatformV1EvaluationInstanceAgentDataEvents.fromJson(
  1. Map json_
)

Implementation

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