I'm new to using built_value's serializers and I use Firestore as a backend. I want to serialize my model, and then convert that given Object to a Map so I can put it into Firestore.
I have this line here:
final serializedList = serializers.serialize(shoppingList, specifiedType: const FullType(ShoppingList)); //Object
The setData
method only accepts a Map for the data so that's why I need to convert it into a map.
Basically define your model like below:
Note the toJson and fromJson methods above. Then I define a global serizlier in
serializers.dart
file.StandardJsonPlugin above is to generate Json as we know it generally. Otherwise built_value serializes objects into its own representation.
Make sure you regenerate files by running
build_runner
after making changes.