clear method

Future<void> clear()

Drop every entry from the underlying box without closing it. Used by AtPersistenceBundle.clear for cheap test isolation.

Implementation

Future<void> clear() async {
  await _accessLogKeyStore.getBox().clear();
}