isTrulyPositive property

bool get isTrulyPositive

Implementation

bool get isTrulyPositive {
  if (this > 0.0) return true;
  return false;
}