any method

bool any(
  1. Set<int> hashes
)

Implementation

bool any(Set<int> hashes) {
  return _notifier.isEmpty ? true : _notifier.any((e) => hashes.contains(e));
}