ReactiveList<E> constructor

ReactiveList<E>()

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

Implementation

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