subtract method

Expr subtract(
  1. Expr rhs
)

Implementation

Expr subtract(Expr rhs) {
  return ExprSubt(left: this, right: rhs);
}