RxObsList<E>.from constructor
Creates a new list containing all the provided elements
.
Implementation
factory RxObsList.from(Iterable elements, {bool growable = true}) =>
RxObsList(List<E>.from(elements, growable: growable));