Skip to content

Commit

Permalink
Fix issue #676
Browse files Browse the repository at this point in the history
type '_InternalLinkedHashMap<dynamic, dynamic>' is not a subtype of type 'Map<String, dynamic>' in type cast
  • Loading branch information
vemarav authored Jun 24, 2020
1 parent aba3ccc commit 65fdcb2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/graphql/lib/src/utilities/helpers.dart
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ Map<String, dynamic> _recursivelyAddAll(
Map<String, dynamic> target,
Map<String, dynamic> source,
) {
target = Map.from(target);
target = Map<String, dynamic>.from(target);
source.forEach((String key, dynamic value) {
if (target.containsKey(key) &&
target[key] is Map<String, dynamic> &&
Expand Down

0 comments on commit 65fdcb2

Please sign in to comment.