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 67457d5 commit 5b104a6Copy full SHA for 5b104a6
lib/client.dart
@@ -141,11 +141,7 @@ class Client {
141
await this.init();
142
}
143
144
- params.keys.forEach((key) {
145
- if (params[key] == null) {
146
- params.remove(key);
147
- }
148
- });
+ params.removeWhere((key,value) => value == null);
149
150
// Origin is hardcoded for testing
151
Options options = Options(
0 commit comments