GoogleCloudAiplatformV1Value.fromJson constructor
GoogleCloudAiplatformV1Value.fromJson(
- Map json_
Implementation
GoogleCloudAiplatformV1Value.fromJson(core.Map json_)
: this(
doubleValue: json_.containsKey('doubleValue')
? (json_['doubleValue'] as core.num).toDouble()
: null,
intValue: json_.containsKey('intValue')
? json_['intValue'] as core.String
: null,
stringValue: json_.containsKey('stringValue')
? json_['stringValue'] as core.String
: null,
);