json2dart-converter icon indicating copy to clipboard operation
json2dart-converter copied to clipboard

Null safety

Open cuong292 opened this issue 3 years ago • 0 comments

Hi guys, Thanks for your hard work to create a wonderful Plugins for Dart. I have an idea for better null safety that in fromJson method we should check like map['data'] == null ? [] : List.from... map['data'] == null ? null : Data.fromJson... So it not error while data might be null Also for null safety, all Object should be null able.

I tried to make a local plugin but fail, so i create this issue and hope it can be updated soon

Many thanks

cuong292 avatar Apr 27 '21 07:04 cuong292