abs method

Expression<DT> abs()

Calculates the absolute value of this number.

Implementation

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