operator - method

Fixed operator -(
  1. Fixed subtration
)

Returns this - subtration

The scale is the largest of the two scales.

Implementation

Fixed operator -(Fixed subtration) =>
    Fixed.fromDecimal(value - subtration.value,
        scale: max(scale, subtration.scale));