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