negativeIntParse property

bool negativeIntParse

Implementation

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