Step-by-Step guide for Flutter JSON Serialization

General Serialization Serialization is the process in computer science to convert an object into something that can be saved in a database or be sent via a network request. Today we want to transform a JSON String that we receive from an API and transform it into an instance of an object. To get our Person information as a String, I will work in the following example with the Random User Generator. This can generate random user information and provides us with an API to receive a JSON String. ...

April 5, 2020 · 7 min · 1424 words · Max Weber