clearSnapshots method

void clearSnapshots(
  1. String boxName
)

Removes all snapshots for boxName.

Implementation

void clearSnapshots(String boxName) {
  _snapshots.remove(boxName);
  _versionCounters.remove(boxName);
}