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