Skip to content

Commit e6e6ea7

Browse files
fix issue with null removal
1 parent a864ed8 commit e6e6ea7

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

lib/client.dart

+1-5
Original file line numberDiff line numberDiff line change
@@ -82,11 +82,7 @@ class Client {
8282
};
8383
}
8484

85-
params.keys.forEach((key) {
86-
if (params[key] == null) {
87-
params.remove(key);
88-
}
89-
});
85+
params.removeWhere((key,value) => value == null);
9086

9187
// Origin is hardcoded for testing
9288
Options options = Options(

0 commit comments

Comments
 (0)