removeAll static method

void removeAll()

Implementation

static void removeAll() {
  _items.forEach((key, value) {
    value.data = null;
    value.notify();
  });
  _items.clear();
}