Checks if text contains only numbers
static bool isNumericOnly(String text) { return !_numbersOnlyPattern.hasMatch(text); }