operator * method

double operator *(
  1. num other
)

Multiplies this number by other.

Implementation

double operator *(num other) => value * other;