isNegative property

bool get isNegative

isNegative: check if this is negative

Implementation

bool get isNegative {
  if (isNull) return false;
  if (this! < 0) return true;
  return false;
}