isCaseInsensitiveContains method
Discover if the String contains another string case insensitively
Example:
bool contains = "Hello World".isCaseInsensitiveContains("hello");
// Result: true
Implementation
bool isCaseInsensitiveContains(String b) =>
GetUtils.isCaseInsensitiveContains(this, b);