Returns true if this string contains other, ignoring case.
true
other
bool containsIgnoreCase(String other) => toLowerCase().contains(other.toLowerCase());