GoogleCloudAiplatformV1ModelExportFormat.fromJson constructor

GoogleCloudAiplatformV1ModelExportFormat.fromJson(
  1. Map json_
)

Implementation

GoogleCloudAiplatformV1ModelExportFormat.fromJson(core.Map json_)
    : this(
        exportableContents: json_.containsKey('exportableContents')
            ? (json_['exportableContents'] as core.List)
                .map((value) => value as core.String)
                .toList()
            : null,
        id: json_.containsKey('id') ? json_['id'] as core.String : null,
      );