remove method

void remove(
  1. ItemType item
)

Remove an item from the list.

Implementation

void remove(ItemType item) {
  removeCallback?.call(item);
}