RxList<E>.empty constructor

RxList<E>.empty({
  1. bool growable = false,
})

Constructs an empty RxList.

If growable is true, the list is growable; otherwise, it's fixed-length.

Implementation

factory RxList.empty({bool growable = false}) =>
    RxList<E>(List<E>.empty(growable: growable));