operator * method

Decimal operator *(
  1. Decimal other
)

Multiplication operator.

Implementation

Decimal operator *(Decimal other) =>
    Decimal._(_value * other._value, _scale + other._scale);