Compare two strings ignoring case. If rhs is null then returns false. Returns true, if both are the same, ignoring case.
bool equalsIgnoreCase(String? rhs) => Strings.equalsIgnoreCase(this, rhs);