RxList<E> constructor

RxList<E>([
  1. List<E>? value
])

Create a reactive List

Implementation

RxList([List<E>? value]) : super(value ?? []);