3
I’m entering the world of development and learning Flutter to program for mobiles.
The basic operation of my app will be to read a JSON from my server and play on a list in the app.
Doubts:
- What are the best practices for doing this?
- I create a class and for each item of my json I prompt?
- Or simply pick up the json response string and play in a Map(which is like a python Dictionary), or I do it some other way?
JSON treatment on flutter in the easiest way (serialization)
– Marconi
Take a look at this article I published in Medium Uncomplicating JSON on Flutter
– Matheus Ribeiro