static bool isValidDigit(String? value) { return value != null && value.isNotEmpty && equals(value, Converter.toNumeric(value, true)); }