abs property

Fixed abs

Returns the absolute value of this.

Implementation

Fixed get abs => isNegative ? -this : this;