replaceRange method
Refer to List.replaceRange.
Additionally returns the list.
Implementation
Future<List<E>> replaceRange(int start, int end, Iterable<E> iterable) async {
return (await this)..replaceRange(start, end, iterable);
}
Refer to List.replaceRange.
Additionally returns the list.
Future<List<E>> replaceRange(int start, int end, Iterable<E> iterable) async {
return (await this)..replaceRange(start, end, iterable);
}