Skip to content

Commit

Permalink
⚡ convert Iterable to List
Browse files Browse the repository at this point in the history
  • Loading branch information
techouse committed Apr 10, 2024
1 parent 208359c commit 12c4635
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/src/utils.dart
Original file line number Diff line number Diff line change
Expand Up @@ -357,7 +357,7 @@ final class Utils {
final dynamic obj = item['obj'][item['prop']];

if (obj is Iterable) {
item['obj'][item['prop']] = obj.whereNotUndefined();
item['obj'][item['prop']] = obj.whereNotUndefined().toList();
}
}
}
Expand Down

0 comments on commit 12c4635

Please sign in to comment.