clear method
Drop all data from this bundle's stores while keeping the underlying connections (Hive boxes etc.) open. Idempotent. Intended for cheap per-test isolation.
Implementation
@override
Future<void> clear() async {
if (_closed) {
throw StateError(
'Cannot clear a closed SqliteAtPersistenceBundle for $atSign');
}
_db.clear();
}