Skip to content

Commit

Permalink
revert
Browse files Browse the repository at this point in the history
  • Loading branch information
mdmohsin7 committed Dec 9, 2024
1 parent dc9a9e1 commit 4799fdb
Showing 1 changed file with 0 additions and 8 deletions.
8 changes: 0 additions & 8 deletions app/lib/backend/preferences.dart
Original file line number Diff line number Diff line change
Expand Up @@ -157,14 +157,6 @@ class SharedPreferencesUtil {

setGptCompletionCache(String key, String value) => saveString('gptCompletionCache:$key', value);

set subPageToShowFromNotification(String value) => saveString('subPageToShowFromNotification', value);

String get subPageToShowFromNotification => getString('subPageToShowFromNotification') ?? '';

set pageToShowFromNotification(int value) => saveInt('pageToShowFromNotification', value);

int get pageToShowFromNotification => getInt('pageToShowFromNotification') ?? 0;

bool get optInAnalytics => getBool('optInAnalytics') ?? true;

set optInAnalytics(bool value) => saveBool('optInAnalytics', value);
Expand Down

0 comments on commit 4799fdb

Please sign in to comment.