fillRange method

  1. @override
void fillRange(
  1. int start,
  2. int end, [
  3. E? fillValue
])
override

Sets the objects in the range start inclusive to end exclusive to the given fillValue.

Implementation

@override
void fillRange(int start, int end, [E? fillValue]) {
  check(fillValue);
  _wrappedList.fillRange(start, end, fillValue);
}