fillRange method
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);
}
Refer to List.fillRange.
Additionally returns the list.
Future<List<E>> fillRange(int start, int end, [E? value]) async {
return (await this)..fillRange(start, end, value);
}