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