GoogleCloudAiplatformV1ModelExportFormat.fromJson constructor

GoogleCloudAiplatformV1ModelExportFormat.fromJson(
  1. Map json_
)

Implementation

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