ifNullThen method

Expression ifNullThen(
  1. Expression other
)
inherited

Return {this} ?? {other}.

Implementation

Expression ifNullThen(Expression other) =>
    BinaryExpression._(this, other, '??');