Remove notification foreground

This commit is contained in:
Eudes Inácio
2021-08-18 17:36:40 +01:00
parent 073016ca73
commit 981f69d65e
4 changed files with 56 additions and 22 deletions
+6
View File
@@ -18,6 +18,12 @@ const { Storage } = Plugins; */
const ret = await this.storage.get(key).then((val) => { return val; });
return JSON.parse(unescape(atob(ret)));
}
async remove(key: string){
await this.storage.remove(key);
}
/*
// Get the value
async get(storageKey: string) {