absoluteValue property

num get absoluteValue

Implementation

num get absoluteValue {
  return this < 0 ? -this : this;
}