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