abs method

  1. @override
DynamicInt abs()
override

Implementation

@override
DynamicInt abs() => isNegative ? -this : this;