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();
}
}
This will remove all the items from all the boxes
void clear() {
for (final Box box in _boxes.values) {
box.removeAll();
}
}