In Firestore.Decode and Firestore.Codec, you are able to specify a decoder for a document which can decode each of its fields with the relevant decoder. However, there is no way to do this for nested objects (e.g. objects in arrays).
This would require creating a Field similar to the way that we can create a Document.
In
Firestore.Decode
andFirestore.Codec
, you are able to specify a decoder for a document which can decode each of its fields with the relevant decoder. However, there is no way to do this for nested objects (e.g. objects in arrays).This would require creating a
Field
similar to the way that we can create aDocument
.