subtractValue method

num subtractValue(
  1. num other
)

Subtract two numbers. This is equivalent to the - operator.

Implementation

num subtractValue(num other) => subtract(this, other);