sub method

  1. @override
Fraction sub(
  1. Fraction a,
  2. Fraction b
)
override

Computes the subtraction: a - b.

Implementation

@override
Fraction sub(Fraction a, Fraction b) => a - b;