operator * method

Decimal operator *(
  1. Decimal other
)

Multiplication operator.

Implementation

Decimal operator *(Decimal other) =>
    (_rational * other._rational).toDecimal();