ObsList<E>.of constructor
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));