CollectiveQueue<E>.of constructor

CollectiveQueue<E>.of(
  1. Iterable<E> elements, {
  2. Cell? bind,
  3. TestCollective<dynamic, Collective> test,
  4. 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;