isContains method

bool isContains(
  1. String other
)

Implementation

bool isContains(String other) {
  return this?.toLowerCase().contains(other.toLowerCase()) ?? false;
}