numeric static method

bool numeric(
  1. String value
)

Validate Numeric

Implementation

static bool numeric(String value) {
  return new RegExp(_NUMERIC_PATTERN).hasMatch(value);
}