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