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