static bool hasMatch(String? value, String pattern) { return (value == null) ? false : RegExp(pattern).hasMatch(value); }