bool containsIgnoreCase(String s) { for (var e in this) { if (equalsIgnoreAsciiCase(e, s)) return true; } return false; }