ObservableList<E>.from constructor

ObservableList<E>.from(
  1. Iterable<E> other
)

Creates an observable list with the elements of other. The order in the list will be the order provided by the iterator of other.

Implementation

ObservableList.from(Iterable<E> other) : _list = List<E>.from(other);