checkEncSetup method

Future<bool> checkEncSetup()

Check if an encryption key is setup

Implementation

Future<bool> checkEncSetup() async {
  /// Get encryption key file from URL
  try {
    await fetchFile(encKeyFileLoc);
    return true;
  } catch (e) {
    return false;
  }
}