isPositiveNumber property

bool isPositiveNumber

Implementation

bool get isPositiveNumber {
  return isNumber && (num.parse(this) > 0);
}