I am really new to flutter and I wonder if it might be possible to load a JSON string into a listview widget without creating a model for it. I mean the JSON itself has an array, call it fields. And this arras has the field as object in it. But I don’t won’t to recreate or append the model all the time, when a new field is present, just use it right away in the code.
Many tutorials use something like json to dart, to create the model but I can’t find some tutorials that show how it would be possible without the model. Maybe because it is a bad design decision? Hoping for your input. Thanks a lot.