GoogleCloudAiplatformV1CustomOutput.fromJson constructor

GoogleCloudAiplatformV1CustomOutput.fromJson(
  1. Map json_
)

Implementation

GoogleCloudAiplatformV1CustomOutput.fromJson(core.Map json_)
  : this(
      rawOutputs:
          json_.containsKey('rawOutputs')
              ? GoogleCloudAiplatformV1RawOutput.fromJson(
                json_['rawOutputs'] as core.Map<core.String, core.dynamic>,
              )
              : null,
    );