RxList<E> constructor

RxList<E>([
  1. List<E> initial = const []
])

Implementation

RxList([List<E> initial = const []]) {
  _value = List.from(initial);
}