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