Skip to content

Commit 0d621ef

Browse files
committed
format
1 parent 40946d3 commit 0d621ef

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

dart/lib/src/hint.dart

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -83,9 +83,8 @@ class Hint {
8383
// Key/Value Storage
8484

8585
void addAll(Map<String, dynamic> keysAndValues) {
86-
final withoutNullValues = keysAndValues.map(
87-
(key, value) => MapEntry(key, value ?? "null")
88-
);
86+
final withoutNullValues =
87+
keysAndValues.map((key, value) => MapEntry(key, value ?? "null"));
8988
_internalStorage.addAll(withoutNullValues);
9089
}
9190

0 commit comments

Comments
 (0)