abs method

FdcDecimal abs()

Returns the absolute value.

Implementation

FdcDecimal abs() => isNegative ? -this : this;