isNotNullOrNegative property

bool get isNotNullOrNegative

isNotNullOrNegative: Checks if the object is not null and negative.

Implementation

bool get isNotNullOrNegative {
  return !isNullOrNegative;
}