removeItemOf<T extends Object> static method

T removeItemOf<T extends Object>(
  1. String name,
  2. int index
)

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);
}