OpUnary constructor
OpUnary({
- OpUnary_Op? op,
- Expr? operand,
Implementation
factory OpUnary({
OpUnary_Op? op,
Expr? operand,
}) {
final $result = create();
if (op != null) {
$result.op = op;
}
if (operand != null) {
$result.operand = operand;
}
return $result;
}