Returns true if the string contains the given other string, ignoring case.
true
other
bool containsIgnoreCase(String other) { return toLowerCase().contains(other.toLowerCase()); }