RxList<T> constructor

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

Implementation

RxList([List<T>? list]) {
  if (list != null) {
    _list = list;
  } else {
    _list = [];
  }
}