字符串匹配/搜索,忽略大小写
bool containsIgnoreCase(String other) { if (isNullOrEmpty) return false; return this!.toLowerCase().contains(other.toLowerCase()); }