multiply method

void multiply(
  1. num other
)

Multiplies the current value by other.

Implementation

void multiply(num other) => value = (value * other) as T;