json_to_dart 1.0.5 copy "json_to_dart: ^1.0.5" to clipboard
json_to_dart: ^1.0.5 copied to clipboard

A library that generates Dart classes (parse and generator included) from a json string.

JSON to Dart #

Build Status

Given a JSON string, this library will generate all the necessary Dart classes to parse and generate JSON.

This library is designed to generate Flutter friendly model classes following the flutter's doc recommendation.

Caveats #

  • When an empty array is given, it will create a List
  • Equal structures are not detected yet (Equal classes are going to be created over and over).
  • Properties named with funky names (like "!breaks", "|breaks", etc) or keyword (like "this", "break", "class", etc) will produce syntax errors.
  • Array of arrays are not supported:
[[{ "isThisSupported": false }]]
copied to clipboard
[{ "thisSupported": [{ "cool": true }] }]
copied to clipboard
5
likes
105
points
71
downloads

Publisher

unverified uploader

Weekly Downloads

2024.09.19 - 2025.04.03

A library that generates Dart classes (parse and generator included) from a json string.

Repository (GitHub)

Documentation

API reference

License

Unlicense (license)

Dependencies

convert, dart_style, json_ast

More

Packages that depend on json_to_dart