isNotNullOrPositive property

bool get isNotNullOrPositive

isNotNullOrPositive: Checks if the object is not null and positive.

Implementation

bool get isNotNullOrPositive {
  return !isNullOrPositive;
}