fix(mobile): setting to always display remote assets (#3044)

This commit is contained in:
Fynn Petersen-Frey
2023-07-01 03:47:44 +02:00
committed by GitHub
parent 5869648f19
commit 615893be38
6 changed files with 26 additions and 6 deletions

View File

@@ -44,7 +44,8 @@ enum AppSettingsEnum<T> {
0,
),
advancedTroubleshooting<bool>(StoreKey.advancedTroubleshooting, null, false),
logLevel<int>(StoreKey.logLevel, null, 5) // Level.INFO = 5
logLevel<int>(StoreKey.logLevel, null, 5), // Level.INFO = 5
preferRemoteImage<bool>(StoreKey.preferRemoteImage, null, false),
;
const AppSettingsEnum(this.storeKey, this.hiveKey, this.defaultValue);