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