containsKey method

bool containsKey(
  1. String key
)

Implementation

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