RxList<E>.empty constructor

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

Implementation

factory RxList.empty({bool growable = false}) {
  return RxList(List.empty(growable: growable));
}