assignNullAware method

Expression assignNullAware(
  1. Expression other
)

Return {this} ??= {other}.

Implementation

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