abs method

Decimal abs()

Absolute value

Implementation

Decimal abs() {
  return _value < BigInt.zero ? Decimal(-_value, _scale) : this;
}