removeAt method
Method to remove item by index
Implementation
void removeAt(int index) {
if (index >= 0 && index < _items.length) {
_items.removeAt(index);
}
}
Method to remove item by index
void removeAt(int index) {
if (index >= 0 && index < _items.length) {
_items.removeAt(index);
}
}