isNumber static method

bool isNumber(
  1. String value
)

Implementation

static bool isNumber(String value) {
  return isDouble(value) || isInt(value);
}