Answers for "dart add json to model"

1

parse json to dart model

import 'dart:convert';

main() {
  String nestedObjText =
      '{"title": "Dart Tutorial", "description": "Way to parse Json", "author": {"name": "bezkoder", "age": 30}}';

  Tutorial tutorial = Tutorial.fromJson(jsonDecode(nestedObjText));

  print(tutorial);
Posted by: Guest on January-22-2021

Code answers related to "Javascript"

Browse Popular Code Answers by Language