fillRange method

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

Implementation

void fillRange(int start, int end, [T? fillValue]) {
  _value.fillRange(start, end, fillValue);
  update();
}