@override Stream<String> storeKeys() async* { final box = await store; for (var key in await box.getAllKeys()) { yield key; } }