exists method
Returns true if key exists in HiveAtKeyValueStore. false otherwise.
Implementation
@override
Future<bool> exists(String key) async {
key = key.toLowerCase();
return getBox().containsKey(HiveKeyStoreHelper.prepareKey(key));
}
Returns true if key exists in HiveAtKeyValueStore. false otherwise.
@override
Future<bool> exists(String key) async {
key = key.toLowerCase();
return getBox().containsKey(HiveKeyStoreHelper.prepareKey(key));
}