isFlushed property

  1. @override
bool isFlushed
override

Whether this collection is already flushed or not.

Note: This will flush the map and all its internal sets.

Implementation

@override
bool get isFlushed => _mapOfSets.isFlushed && _mapOfSets.values.every((ISet<V> s) => s.isFlushed);