class AttributesModel { String? id; String? title; AttributesModel({this.id, this.title}); AttributesModel.fromJson(Map json) { id = json['id']; title = json['title']; } Map toJson() { final Map data = {}; data['id'] = id; data['title'] = title; return data; } }