times method

Implementation

RationalNumber times(RationalNumber that) =>
    RationalNumber(dividend * that.dividend, divisor * that.divisor);