clear method

void clear()

This will remove all the items from all the boxes

Implementation

void clear() {
  for (final Box box in _boxes.values) {
    box.removeAll();
  }
}