class UserFavCategory { String userGuid; String categoryCode; String countID; UserFavCategory({ this.userGuid, this.categoryCode, this.countID, }); UserFavCategory.fromJSON(Map json) : userGuid = json['userguid'], categoryCode = json['catcode'], countID = json['countid']; Map toJson() { final Map data = Map(); data['userguid'] = this.userGuid; data['catcode'] = this.categoryCode; data['countid'] = this.countID; return data; } @override String toString() { return '{"userguid": "$userGuid", "catcode": "$categoryCode","countid": "$countID"}'; } }