RxObsList<E>.empty constructor

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

Creates an empty list.

Implementation

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