Returns true if this string contains other, ignoring letter case.
other
bool containsIgnoreCase(String other) { if (this == null) return false; return this!.toLowerCase().contains(other.toLowerCase()); }