abs method

Rational abs()

Returns the absolute value of this.

Implementation

Rational abs() => _isNegative ? (-this) : this;