knownSources property

Set<String> get knownSources

Implementation

Set<String> get knownSources {
  final s = <String>{};
  for (final e in _buffer.entries) {
    s.add(e.source);
  }
  return s;
}