cIsDigit property

bool get cIsDigit

Checks if the string represents an integer or a double.

Implementation

bool get cIsDigit {
  if (cIsNull(this)) {
    return false;
  }
  return num.tryParse(this) is num;
}