fillRange method

Future<List<E>> fillRange(
  1. int start,
  2. int end, [
  3. E? value
])

Refer to List.fillRange.

Additionally returns the list.

Implementation

Future<List<E>> fillRange(int start, int end, [E? value]) async {
  return (await this)..fillRange(start, end, value);
}