GoogleCloudRecommenderV1OperationGroup.fromJson constructor

GoogleCloudRecommenderV1OperationGroup.fromJson(
  1. Map json_
)

Implementation

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