RxObsList<E>.of constructor

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

Creates a list from the provided elements.

Implementation

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