operator unary- method

Expression<BigInt> operator unary-()

Returns the negation of this value.

Implementation

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