GoogleCloudAiplatformV1FetchFeatureValuesResponseFeatureNameValuePairList.fromJson constructor
GoogleCloudAiplatformV1FetchFeatureValuesResponseFeatureNameValuePairList.fromJson(
- Map json_
Implementation
GoogleCloudAiplatformV1FetchFeatureValuesResponseFeatureNameValuePairList.fromJson(
core.Map json_,
) : this(
features:
(json_['features'] as core.List?)
?.map(
(value) =>
GoogleCloudAiplatformV1FetchFeatureValuesResponseFeatureNameValuePairListFeatureNameValuePair.fromJson(
value as core.Map<core.String, core.dynamic>,
),
)
.toList(),
);