menu
ck_utils package
documentation
all_src/utils/common.dart
hasMatch function
hasMatch function
dark_mode
light_mode
hasMatch
function
bool
hasMatch
(
String
?
s
,
String
p
)
Implementation
bool hasMatch(String? s, String p) { return (s == null) ? false : RegExp(p).hasMatch(s); }
ck_utils package
documentation
all_src/utils/common
hasMatch function
common library