isNegative property

bool get isNegative

True when the represented decimal value is less than zero.

Zero is never negative, regardless of scale.

Implementation

bool get isNegative => scaledValue.isNegative;