We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 40946d3 commit 0d621efCopy full SHA for 0d621ef
dart/lib/src/hint.dart
@@ -83,9 +83,8 @@ class Hint {
83
// Key/Value Storage
84
85
void addAll(Map<String, dynamic> keysAndValues) {
86
- final withoutNullValues = keysAndValues.map(
87
- (key, value) => MapEntry(key, value ?? "null")
88
- );
+ final withoutNullValues =
+ keysAndValues.map((key, value) => MapEntry(key, value ?? "null"));
89
_internalStorage.addAll(withoutNullValues);
90
}
91
0 commit comments