RxList<T> constructor

RxList<T>([
  1. List<T>? initial
])

Creates a new reactive list with the initial value.

Implementation

RxList([List<T>? initial]) : super(initial ?? <T>[]);