ifNullThen method

Expression ifNullThen(
  1. Expression other
)

Return {this} ?? {other}.

Implementation

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