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;
}