ObsList<E>.filled constructor

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

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

Implementation

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