GoogleCloudMlV1BuiltInAlgorithmOutput.fromJson constructor

GoogleCloudMlV1BuiltInAlgorithmOutput.fromJson(
  1. Map json_
)

Implementation

GoogleCloudMlV1BuiltInAlgorithmOutput.fromJson(core.Map json_)
    : this(
        framework: json_.containsKey('framework')
            ? json_['framework'] as core.String
            : null,
        modelPath: json_.containsKey('modelPath')
            ? json_['modelPath'] as core.String
            : null,
        pythonVersion: json_.containsKey('pythonVersion')
            ? json_['pythonVersion'] as core.String
            : null,
        runtimeVersion: json_.containsKey('runtimeVersion')
            ? json_['runtimeVersion'] as core.String
            : null,
      );