multiplyValue method

num multiplyValue(
  1. num other
)

Multiply two numbers. This is equivalent to the * operator.

Implementation

num multiplyValue(num other) => multiply(this, other);