containsKey method
Implementation
bool containsKey(String key){
if(_storageType == StorageType.HIVE){
return _realEncryptBox.containsKey(key);
}else if(_storageType == StorageType.SP){
return _prefs.containsKey(key);
}
return false;
}