mirror of
https://github.com/vodemn/m3_lightmeter.git
synced 2024-11-22 07:20:39 +00:00
typo
This commit is contained in:
parent
d7162c7529
commit
2f243db5bb
1 changed files with 1 additions and 1 deletions
|
@ -41,7 +41,7 @@ class RemoteConfigService {
|
|||
for (final value in FirebaseRemoteConfig.instance.getAll().entries) {
|
||||
try {
|
||||
final feature = Feature.values.firstWhere((f) => f.name == value.key);
|
||||
result[feature] = MapEntry(feature, value.value.toValue(feature));
|
||||
result[feature] = value.value.toValue(feature);
|
||||
} catch (e) {
|
||||
log(e.toString());
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue