ifNullThen method
Expression
ifNullThen(
- Expression other
inherited
Return {this} ?? {other}
.
Implementation
Expression ifNullThen(Expression other) => BinaryExpression._(
this,
other,
'??',
);