GoogleCloudAiplatformV1ExecuteCodeResponse.fromJson constructor

GoogleCloudAiplatformV1ExecuteCodeResponse.fromJson(
  1. Map json_
)

Implementation

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