abs method

Expression<BigInt> abs()

Calculates the absolute value of this number.

Implementation

Expression<BigInt> abs() {
  return dartCast<int>().abs().dartCast<BigInt>();
}