fillRange method

void fillRange(
  1. int start,
  2. int end,
  3. E fillValue
)

As List.fillRange, but requires a value.

Implementation

void fillRange(int start, int end, E fillValue) {
  _maybeCheckElement(fillValue);
  _safeList.fillRange(start, end, fillValue);
}