GoogleCloudAiplatformV1ExportDataRequest.fromJson constructor

GoogleCloudAiplatformV1ExportDataRequest.fromJson(
  1. Map json_
)

Implementation

GoogleCloudAiplatformV1ExportDataRequest.fromJson(core.Map json_)
  : this(
      exportConfig: json_.containsKey('exportConfig')
          ? GoogleCloudAiplatformV1ExportDataConfig.fromJson(
              json_['exportConfig'] as core.Map<core.String, core.dynamic>,
            )
          : null,
    );