downloadKey property

Future<DownloadKeyRet?> get downloadKey

get stored downloadKey

Implementation

Future<DownloadKeyRet?> get downloadKey async {
  String? rawKey = (await _prefs).getString(_keyDownloadKey);
  if (rawKey != null) {
    return DownloadKeyRet.fromRawJson(rawKey);
  }
  return null;
}