Tag: JSON

JSON (JavaScript Object Notation) is a lightweight data interchange format. It is used to transmit data between a server and a web application, characterized by its simplicity, readability, and ease of parsing.

  • Flutter: generating *.g.dart files for json serialization

    Flutter: generating *.g.dart files for json serialization

    By

    in

    When working on mobile apps, you might need to communicate with a web server or easily store structured data. In such cases, JSON is a good solution to handle the data. But this also requires the serialization of data – turning a data structure into a string – or the other way round, deserialization –…

    Read more