remainder method

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

Computes the remainder of the truncating division.

Implementation

@override
Fraction remainder(Fraction a, Fraction b) =>
    unsupportedOperation('remainder');