operator * method

Fixed operator *(
  1. Fixed multiplier
)

Returns this * multiplier.

The result's scale is the sum of the scale of the two operands.

Implementation

Fixed operator *(Fixed multiplier) =>
    Fixed.fromDecimal(value * multiplier.value,
        scale: scale + multiplier.scale);