how to convert json data in dartpad code example
Example: convert json to dart
class Todo {
int userId;
int id;
String title;
bool completed;
Todo({this.userId, this.id, this.title, this.completed});
Todo.fromJson(Map json) {
userId = json['userId'];
id = json['id'];
title = json['title'];
completed = json['completed'];
}
Map toJson() {
final Map data = new Map();
data['userId'] = this.userId;
data['id'] = this.id;
data['title'] = this.title;
data['completed'] = this.completed;
return data;
}
}