fillRange method
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'));
}
Async fills a range of elements with fillValue
.
@override
Future<void> fillRange(int start, int end, [dynamic fillValue]) async {
return Future<void>(() => throw UnsupportedError('Unmodifiable operation'));
}