operator + method

Fixed operator +(
  1. Fixed addition
)

Returns this + addition

The resulting scale is the larger scale of the two operands.

Implementation

Fixed operator +(Fixed addition) => Fixed.fromDecimal(value + addition.value,
    scale: max(scale, addition.scale));