divideValue method

num divideValue(
  1. num other
)

Divide two numbers. This is equivalent to the / operator. Returns the quotient of this and other.

Implementation

num divideValue(num other) => divide(this, other);