factory constructor ObservableList.from


ObservableList.from(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.

Source

factory ObservableList.from(Iterable<E> other) =>
    new ObservableList<E>()..addAll(other);