Future<void> store(String key, Uint8List value) async { try { await actor.getFunc(AssetMethod.store)?.call([key, value]); } catch (e) { rethrow; } }