mul method

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

Computes the multiplication: a * b.

Implementation

@override
Fraction mul(Fraction a, Fraction b) => a * b;