freezer 0.6.1 freezer: ^0.6.1 copied to clipboard
Provides the easiest and most productive automatic generation of model objects from JSON files.
Release Note #
v0.6.0 #
v0.5.0 #
- Supported external references for objects. You can specify external references by using JSON object
references
. (#8) - Fixed a bug that JSON objects in Map structure were not converted to model objects.
v0.3.0 #
- Supported not nested list structure like
List<String>
. This will automatically perform type identification when the generator is executed. However, be sure to include values of a specific type in the list defined in the JSON file. (#7)
v0.2.0 #
- For future extensibility, fixed the specification of the
!as:
identifier. From this version, this identifier should specify the name of the file to be generated. The file name of the snake case specified by this identifier is converted to a camel case class name at runtime. (#12) - Added the
.!name:
identifier to specify the name of the field.@JsonKey
will be used if this identifier is specified. (#13) - Fixed to ignore warnings when
@JsonKey
is used for a field. (#11)
v0.0.2 #
- Fixed entry file name from
freezer.dart
tomain.dart
.
v0.0.1 #
- First Release.