abs property

num get abs

Implementation

num get abs => this < 0 ? -this : this;