Skip to content

Commit

Permalink
[dart-dio] includeIfNull: truefalse bugfix (#17631)
Browse files Browse the repository at this point in the history
Co-authored-by: Vasiliy Ditsyak <[email protected]>
  • Loading branch information
vasilich6107 and vasilich6107 committed Jan 20, 2024
1 parent 3756c3b commit 3767110
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ class {{{classname}}} {
{{#defaultValue}}defaultValue: {{{defaultValue}}},{{/defaultValue}}
name: r'{{{baseName}}}',
required: {{#required}}true{{/required}}{{^required}}false{{/required}},
includeIfNull: {{#required}}{{#isNullable}}true{{/isNullable}}false{{/required}}{{^required}}false{{/required}}
includeIfNull: {{#required}}{{#isNullable}}true{{/isNullable}}{{^isNullable}}false{{/isNullable}}{{/required}}{{^required}}false{{/required}}
)
{{/isBinary}}
{{#isBinary}}
Expand Down

0 comments on commit 3767110

Please sign in to comment.