Jaguar-dart/jaguar_serializer

Nullable fields

Closed this issue · 0 comments

for each field we are generating the following code.

if (model.name != null) {
     ret["name"] = model.name;
}

We should also be able to send null inside the Map, probably using something like const Nullable() on the field.