clear method
Implementation
Future<void> clear() async {
assert(_box != null, 'the store is not connected');
await _box!.deleteAll(_box!.keys);
_notifyChangesListeners(TStoreChangeType.deleteAll);
}
Future<void> clear() async {
assert(_box != null, 'the store is not connected');
await _box!.deleteAll(_box!.keys);
_notifyChangesListeners(TStoreChangeType.deleteAll);
}