json top-level property

String json
getter/setter pair

Implementation

String json = """
{
  "widgetName": "Scaffold",
  "properties": {
    "title": {
      "widgetName": "Text",
      "properties": {
        "message": "Title"
      }
    }
  },
  "child": {
    "widgetName": "Text",
    "properties": {
      "message": "Click me",
      "onClick": {
        "actionType": "Route",
        "url": "http://localhost:4001/sub_page",
        "animationType": "vertical",
        "animationTime": 1000
      }
    }
  }
}
""";