containsIgnoreCase method

bool containsIgnoreCase(
  1. String other
)

Returns true if the string contains the given other string, ignoring case.

Implementation

bool containsIgnoreCase(String other) {
  return toLowerCase().contains(other.toLowerCase());
}