RxList<E> constructor

RxList<E>()

Create a list. Behaves similar to List<int>([int length])

Implementation

RxList() : super(<E>[]) {
  _onChange = _changes.stream.asBroadcastStream();
}