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