GoogleCloudAiplatformV1PredictSchemata.fromJson constructor

GoogleCloudAiplatformV1PredictSchemata.fromJson(
  1. Map json_
)

Implementation

GoogleCloudAiplatformV1PredictSchemata.fromJson(core.Map json_)
    : this(
        instanceSchemaUri: json_.containsKey('instanceSchemaUri')
            ? json_['instanceSchemaUri'] as core.String
            : null,
        parametersSchemaUri: json_.containsKey('parametersSchemaUri')
            ? json_['parametersSchemaUri'] as core.String
            : null,
        predictionSchemaUri: json_.containsKey('predictionSchemaUri')
            ? json_['predictionSchemaUri'] as core.String
            : null,
      );