keys property

Get all the ScopedKeys

Implementation

Iterable<ScopedKey> get keys {
  final List<ScopedKey> nonNullKeys = [];
  final thePool = pool;
  thePool.forEach((key, value) {
    if (value != null) {
      nonNullKeys.add(key);
    }
  });

  return nonNullKeys;
}