Skip to content

Commit c8ed8f7

Browse files
committed
Fixed a warning from dartanalyzer
1 parent c0fa761 commit c8ed8f7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/json_object.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -245,7 +245,7 @@ class JsonObject<E> extends Object implements Map, Iterable {
245245

246246
bool every(bool f(E element)) => this.toIterable().every(f);
247247

248-
String join([String separator]) => this.toIterable().join(separator);
248+
String join([String separator = ""]) => this.toIterable().join(separator);
249249

250250
bool any(bool f(E element)) => this.toIterable().any(f);
251251

0 commit comments

Comments
 (0)