CollectiveQueue<E>.of constructor
CollectiveQueue<E>.of (
- Iterable<
E> elements, { - Cell? bind,
- TestCollective<
dynamic, Collective> test, - bool growable,
Creates a growable list by default from elements
Implementation
factory CollectiveQueue.of(Iterable<E> elements, {
Cell? bind,
TestCollective test,
bool growable
}) = _CollectiveQueue<E>.of;