fillRange method

  1. @override
Future<void> fillRange(
  1. int start,
  2. int end, [
  3. dynamic fillValue
])
override

Async fills a range of elements with fillValue.

Implementation

@override
Future<void> fillRange(int start, int end, [dynamic fillValue]) async {
  return Future<void>(() => throw UnsupportedError('Unmodifiable operation'));
}