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