removeList method

void removeList(
  1. Object id
)

Removes a sorted and filtered list of documents from the local state.

Implementation

void removeList(Object id) => docsNotifier.updateCurrent(
  (value) => value..removeList(id),
);