mirror of
https://gitlab.com/nkming2/nc-photos.git
synced 2025-02-24 10:28:50 +01:00
Format code
This commit is contained in:
parent
770d4527da
commit
477e694133
1 changed files with 2 additions and 1 deletions
|
@ -187,7 +187,8 @@ class Pref {
|
|||
(key, value) => provider.setInt(key, value));
|
||||
|
||||
bool? hasShownEnhanceInfo() => provider.getBool(PrefKey.hasShownEnhanceInfo);
|
||||
bool hasShownEnhanceInfoOr([bool def = false]) => hasShownEnhanceInfo() ?? def;
|
||||
bool hasShownEnhanceInfoOr([bool def = false]) =>
|
||||
hasShownEnhanceInfo() ?? def;
|
||||
Future<bool> setHasShownEnhanceInfo(bool value) => _set<bool>(
|
||||
PrefKey.hasShownEnhanceInfo,
|
||||
value,
|
||||
|
|
Loading…
Reference in a new issue