removeItemOf<T extends Object> static method
Remove the item at the specified index.
name
: Name of the Pagination instance.
index
: Index of the item to retrieve.
Implementation
static T removeItemOf<T extends Object>(String name, int index) {
return of<T>(name).removeItem(index);
}