json_serializable_generator 1.0.0-rc2 copy "json_serializable_generator: ^1.0.0-rc2" to clipboard
json_serializable_generator: ^1.0.0-rc2 copied to clipboard

outdated

This generator creates a safe way to serialize and deserialize json strings using a simple JSON schema.

json_serializable_generator #

Provides Dart Build System builders for handling JSON.

This README is still WIP

This library reads .model.json files and automatically generates the dart model (.model.dart) for them.

Models should be in one directory

Usage #

simple case #

For the Types int, double, bool, String, List, Map the library relies on the default dart json serialization. For other Types it is assumed that a named constructor fromJson(Map<String, dynamic> json) exists.

Example #

{
  ...,
  "reference": "SomeGeneratedResource",
  "some_other_prop": "String"
}

complex types #

field is required explanation default
type 🗹 The Type Name (class name) -
readMethod 🗷 Method which is getting called with the json (Function(String)) and should return a class instance named constructor or static method fromJson(Map<String, dynamic> json)
writeMethod 🗷 Method to "write" the class to String, int, double, bool, Map or List toJson() method on an instance
importPath 🗷 path from which the resulting model class file can import this class. Should be an "absolute" path. falls back to the generated .model.dart import

Example #

{
  ...,
  "externalResource": {
    "type": "ExternalResource",
    "writeMethod": "prettyWrite",
    "readMethod": "prettyRead",
    "importPath": "package:my_app/external_resources/ExternalResource.dart"
  }
}

Build configuration #

targets:
  $default:
    builders:
      json_serializable_generator:
        generate_for:
          include:
            - lib/**
4
likes
0
pub points
18%
popularity

Publisher

unverified uploader

This generator creates a safe way to serialize and deserialize json strings using a simple JSON schema.

Homepage
Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

build, meta

More

Packages that depend on json_serializable_generator