saveDownloadKey method

Future<bool> saveDownloadKey(
  1. DownloadKeyRet key
)

save downloadKey

Implementation

Future<bool> saveDownloadKey(DownloadKeyRet key) async {
  return (await _prefs).setString(_keyDownloadKey, key.toRawJson());
}