feat: Add unified push as push provider
This commit is contained in:
parent
c4cc6f4fe5
commit
d5a2ee2f3f
11 changed files with 453 additions and 234 deletions
|
|
@ -92,6 +92,10 @@ class Store {
|
|||
return await secureStorage.write(key: key, value: value);
|
||||
}
|
||||
|
||||
Future<void> setItemBool(String key, bool value) async {
|
||||
await setItem(key, value.toString());
|
||||
}
|
||||
|
||||
Future<void> deleteItem(String key) async {
|
||||
if (!PlatformInfos.isMobile) {
|
||||
await _setupLocalStorage();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue