GoogleCloudAiplatformV1FetchFeatureValuesResponseFeatureNameValuePairListFeatureNameValuePair.fromJson constructor
GoogleCloudAiplatformV1FetchFeatureValuesResponseFeatureNameValuePairListFeatureNameValuePair.fromJson(
- Map json_
Implementation
GoogleCloudAiplatformV1FetchFeatureValuesResponseFeatureNameValuePairListFeatureNameValuePair.fromJson(
core.Map json_)
: this(
name: json_.containsKey('name') ? json_['name'] as core.String : null,
value: json_.containsKey('value')
? GoogleCloudAiplatformV1FeatureValue.fromJson(
json_['value'] as core.Map<core.String, core.dynamic>)
: null,
);