class Note { final int postId; final String content; Note({required this.postId, required this.content}); factory Note.fromJson(Map json) { return Note( postId: json['postId'], content: json['content'], ); } Map toJson() => { 'postId': postId, 'content': content, }; }