positiveIntParse property

bool positiveIntParse

Implementation

bool get positiveIntParse {
  if (!intTryParse) return false;
  if (int.parse(this!) <= 0) return false;
  return true;
}