Skip to content

Commit

Permalink
format
Browse files Browse the repository at this point in the history
  • Loading branch information
denrase committed Jan 15, 2024
1 parent 40946d3 commit 0d621ef
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions dart/lib/src/hint.dart
Original file line number Diff line number Diff line change
Expand Up @@ -83,9 +83,8 @@ class Hint {
// Key/Value Storage

void addAll(Map<String, dynamic> keysAndValues) {
final withoutNullValues = keysAndValues.map(
(key, value) => MapEntry(key, value ?? "null")
);
final withoutNullValues =
keysAndValues.map((key, value) => MapEntry(key, value ?? "null"));
_internalStorage.addAll(withoutNullValues);
}

Expand Down

0 comments on commit 0d621ef

Please sign in to comment.