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.
contents
1 parent 8856c43 commit b405072Copy full SHA for b405072
internal/sidekick/dart/templates/lib/message.mustache
@@ -89,12 +89,12 @@ final class {{Codec.Name}} extends {{Codec.Model.Codec.ProtoPrefix}}ProtoMessage
89
@override
90
{{#Codec.HasToStringLines}}
91
String toString() {
92
- final contents = [
+ final $contents = [
93
{{#Codec.ToStringLines}}
94
{{{.}}}
95
{{/Codec.ToStringLines}}
96
].join(',');
97
- return '{{Name}}($contents)';
+ return '{{Name}}(${$contents})';
98
}
99
{{/Codec.HasToStringLines}}
100
{{^Codec.HasToStringLines}}
0 commit comments