isCaseInsensitiveContainsAny method

bool isCaseInsensitiveContainsAny(
  1. String compareTo
)

Checks if a contains b or b contains a (Treating or interpreting upper- and lowercase letters as being the same).

Implementation

bool isCaseInsensitiveContainsAny(String compareTo) =>
    ValidatorUtils.isCaseInsensitiveContainsAny(this, compareTo);