Determines this String and other are equal, ignoring capitalization.
other
bool equalsIgnoreCase(String other) => toLowerCase() == other.toLowerCase();