2023-12-30 18:10:19 +01:00

29 lines
451 B
Dart

class SelfNote {
String id;
String? title;
String content;
Map? json;
SelfNote({
required this.id,
this.title,
required this.content,
this.json,
});
factory SelfNote.fromJson(Map json) {
return SelfNote(
id: json['id'],
title: json['title'],
content: json['content'],
json: json,
);
}
get toJson => {
'id': id,
'title': title,
'content': content,
};
}