RxList<E>.of constructor

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

Implementation

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