GetOperationsResponse constructor
Implementation
factory GetOperationsResponse({
$core.Iterable<Operation>? operations,
}) {
final $result = create();
if (operations != null) {
$result.operations.addAll(operations);
}
return $result;
}