removeAt method

E removeAt(
  1. int index
)

Implementation

E removeAt(int index) {
  final E removedItem = _items.removeAt(index);
  if (removedItem != null) {
    _animatedList?.removeItem(
      index,
          (BuildContext context, Animation<double> animation) => removedItemBuilder(removedItem, context, animation),
    );
  }
  return removedItem;
}