Skip to content

m-noer/jsonToDart

Repository files navigation

jsonToDartModel

online tool for convert json to dart code

click https://m-noer.github.io/jsonToDart/

Custom dart model from https://ashamp.github.io/jsonToDartModel/

Feature

  • online use, without plugin
  • support null safe
  • support multidimensional list
  • support complex json
  • support convert all props to String type
  • empty props warning
  • single file
  • dart keyword protected
  • instant convert

FYI

  • object should have at least one property
  • only first object in array will be parsed, empty array will cause error
  • when select Force String Type , the bool type will not convert

Usage

  1. input json string in left textinput
  2. input root class name in left bottom textinput
  3. copy code by button or mouse

Example

json string may looks like

{
  "anInt": 1,
  "aDouble": 2.3,
  "aString": "hello",
  "aBool": false,
  "anObj": {
    "name": "x",
    "age": 18.0
  }
}

named it SomeRootEntity and convert to dart

  var obj = SomeRootEntity.fromJson(jsonDecode(json));
  String encodedJson = jsonEncode(obj.toJson());
  print(encodedJson);//{"anInt":1,"aDouble":2.3,"aString":"hello","aBool":false,"anObj":{"name":"x","age":18.0}}

reademe

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published