removeItemById method

void removeItemById(
  1. String id
)

Removes item by Id from the feed, no animation

Implementation

void removeItemById(String id) => _state != null ? _state!._removeItemById(id) : null;