RxObsList<E>.filled constructor
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));