static bool isOnly(String input) { if (input.isEmpty) return false; return RegExp(DIGIT_REGEX).hasMatch(input); }