json_to_dart_model_plus 0.0.10
json_to_dart_model_plus: ^0.0.10 copied to clipboard
A Dart package for generating Dart model code from JSON.
Changelog #
All notable changes to this project will be documented in this file.
The format is based on Keep a Changelog, and this project adheres to Semantic Versioning.
0.0.9 - 2024-10-21 #
Added #
- Initial release of the
json_to_dart_modelDart package. - Added functionality to generate Dart model classes from JSON input.
- Supported types:
int,double,String,bool, anddynamic. - Null safety included, allowing nullable fields (
int?,String?, etc.). fromJsonmethod for creating Dart models from JSON objects.toJsonmethod for converting Dart models to JSON maps.toStringmethod that outputs JSON string representation of the model.- Conversion from snake_case JSON keys to camelCase Dart field names.
- Basic
lintsandtestdev dependencies for Dart-only project setup.