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