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