Skip to content

Commit

Permalink
[dart-dio] includeIfNull: truefalse bugfix
Browse files Browse the repository at this point in the history
  • Loading branch information
vasilich6107 committed Jan 17, 2024
1 parent 287e8fc commit d5640b7
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 d5640b7

Please sign in to comment.