GoogleCloudAiplatformV1GenerateSyntheticDataResponse.fromJson constructor

GoogleCloudAiplatformV1GenerateSyntheticDataResponse.fromJson(
  1. Map json_
)

Implementation

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