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.
2 parents cac7e34 + 71c6959 commit d09a4dbCopy full SHA for d09a4db
templates/dart/lib/client.dart.twig
@@ -68,11 +68,7 @@ class Client {
68
};
69
}
70
71
- params.keys.forEach((key) {
72
- if (params[key] == null) {
73
- params.remove(key);
74
- }
75
- });
+ params.removeWhere((key,value) => value == null);
76
77
// Origin is hardcoded for testing
78
Options options = Options(
templates/flutter/lib/client.dart.twig
@@ -134,11 +134,7 @@ class Client {
134
await this.init();
135
136
137
138
139
140
141
142
143
144
0 commit comments