Format code

This commit is contained in:
Ming Ming 2022-05-17 19:40:45 +08:00
parent 770d4527da
commit 477e694133

View file

@ -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,