dust field note
Decode Tagged JSON into a Sealed Model

How do you decode tagged JSON into a sealed model?
Without code generation, you usually read the discriminator and map each value yourself. With Dust, define the tag and variants on the sealed class. Dust generates the JSON helpers, while your app can keep using a normal exhaustive switch.
See the Dust sealed-class guide.
#Dust #Serde #Dart #CodeGeneration