bool containsAny(Iterable<T>? toCompare) { return toCompare?.any((item) { return this?.contains(item) == true; }) ?? false; }