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