operator + method

MixedFraction operator +(
  1. MixedFraction other
)

The sum between two mixed fractions.

Implementation

MixedFraction operator +(MixedFraction other) {
  final result = toFraction() + other.toFraction();

  return result.toMixedFraction();
}