RxList<E>.from constructor

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

Implementation

RxList.from(Iterable<E> elements, {bool growable: true})
    : super(List<E>.from(elements, growable: growable));