class Bookmark { int? id; String? title; String? url; String? favicon; int? weight; int? addedToIndex; int? addedToQa; int? createdAt; Bookmark( {this.id, this.title, this.url, this.favicon, this.weight, this.addedToIndex, this.addedToQa, this.createdAt}); Bookmark.fromJson(Map json) { id = json['id']; title = json['title']; url = json['url']; favicon = json['favicon']; weight = json['weight']; addedToIndex = json['added_to_index']; addedToQa = json['added_to_qa']; createdAt = json['created_at']; } Map toJson() { final Map data = new Map(); data['id'] = this.id; data['title'] = this.title; data['url'] = this.url; data['favicon'] = this.favicon; data['weight'] = this.weight; data['added_to_index'] = this.addedToIndex; data['added_to_qa'] = this.addedToQa; data['created_at'] = this.createdAt; return data; } }