checkEncKeyStorage method

bool checkEncKeyStorage()

Check if encryption key is already stored in the local storage

Implementation

bool checkEncKeyStorage() {
  if (appStorage.getItem('encKey') != null) {
    return true;
  } else {
    return false;
  }
}