Skip to content

Commit

Permalink
Fix named parameter symbol
Browse files Browse the repository at this point in the history
  • Loading branch information
r52 committed Dec 19, 2024
1 parent 7b5cf2e commit 6985ddb
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ final class ${mutation.generatedMutationImplName}
Map<String, String>? named = Map<String, String>.fromEntries(
mutation.node.parameters?.parameters
.where((e) => e.isNamed)
.map((e) => MapEntry(e.name!.lexeme, e.name!.lexeme)) ??
.map((e) => MapEntry('#${e.name!.lexeme}', e.name!.lexeme)) ??
const [],
);

Expand Down

0 comments on commit 6985ddb

Please sign in to comment.