ReactiveList<E>.filled constructor

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

Implementation

ReactiveList.filled(int length, E fill, {bool growable: false})
    : super(List<E>.filled(length, fill, growable: growable)) {
  _onChange = _changes.stream.asBroadcastStream();
}