activeSubscriptions property

Map<String, Set<String>> get activeSubscriptions

Snapshot of active subscription URIs per ownerKey (test helper).

Implementation

Map<String, Set<String>> get activeSubscriptions => <String, Set<String>>{
      for (final e in _active.entries) e.key: {...e.value}
    };