Update DartRenderer.ts by jessicamrbr · Pull Request #2720 · glideapps/quicktype

@jessicamrbr

Related Issue

(#2719)

How Has This Been Tested?

no tested

vitordeap

".map[",
dynamic,
this._options.nullSafety ? "]!" : "]",
(this._options.nullSafety && !isNullable) ? "]!" : "]"

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

(this._options.nullSafety && !isNullable) ? "]!" : "]"
(this._options.nullSafety && !enumType.isNullable && !isNullable)? "]!" : "]",

In my tests, this is the code that worked

djnugent

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Tested on my project and it works