completeKeys property

Set<String> get completeKeys

Orphans that came back from adoptable already carrying both a namespace and a description, so adopting them needs no follow-up.

Implementation

Set<String> get completeKeys => {
  for (final e in _sourceEntries.entries)
    if (_hasNamespace(e.value) && _hasDescription(e.value)) e.key,
};