RxObsList<E>.filled constructor

RxObsList<E>.filled(
  1. int length,
  2. E fill, {
  3. bool growable = false,
})

Creates a new list of the given length with the provided fill element at each position.

Implementation

factory RxObsList.filled(int length, E fill, {bool growable = false}) =>
    RxObsList(List<E>.filled(length, fill, growable: growable));