notContain method

bool notContain(
  1. String pattern
)

Implementation

bool notContain(String pattern) {
  if (this == null) return false;

  for (int i = 0; i < this!.length; i++) {
    if (pattern.contains(this![i])) return false;
  }

  return true;
}