values property

Get all the ScopedDisposableObjectMixin objects

Implementation

Iterable<ScopedDisposableObjectMixin> get values {
  final List<ScopedDisposableObjectMixin> nonNullValues = [];
  final thePool = pool;
  for (final v in thePool.values) {
    if (v != null) {
      nonNullValues.add(v);
    }
  }
  return nonNullValues;
}