Compares a and b after converting to lower case.
a
b
Both a and b must not be null.
int compareIgnoreCase(String a, String b) => a.toLowerCase().compareTo(b.toLowerCase());