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