static bool matches(String regex, String input) { if (input.isEmpty) return false; return RegExp(regex).hasMatch(input); }