assign method

Expression assign(
  1. Expression other
)

Return {this} = {other}.

Implementation

Expression assign(Expression other) =>
    BinaryExpression._(this, other, '=', isConst: isConst);