ObsList<E>.of constructor

ObsList<E>.of(
  1. Iterable<E> elements, {
  2. bool growable = true,
})

Creates a list from the provided elements.

The Iterator of elements provides their order.

This constructor creates a growable list when growable is true; otherwise, it returns a fixed-length list.

Implementation

factory ObsList.of(Iterable<E> elements, {bool growable = true}) =>
    ObsList(List<E>.of(elements, growable: growable));