isCaseInsensitiveContains method

bool isCaseInsensitiveContains(
  1. String b
)

Does the provided string contained in this string?

Implementation

bool isCaseInsensitiveContains(String b) =>
    GetUtils.isCaseInsensitiveContains(this, b);