insert method
- int index,
- E element
override
Inserts element
at position index
in this list.
This increases the length of the list by one and shifts all objects at or after the index towards the end of the list.
The list must be growable.
The index
value must be non-negative and no greater than length.
final numbers = <int>[1, 2, 3, 4];
const index = 2;
numbers.insert(index, 10);
print(numbers); // [1, 2, 10, 3, 4]
Implementation
void insert(int index, E element) {
checkNotNullable(index, "index");
var length = this.length;
RangeError.checkValueInInterval(index, 0, length, "index");
add(element);
if (index != length) {
setRange(index + 1, length + 1, this, index);
this[index] = element;
}
}