factory Note.fromMap(Map<String, Object?> map) { return Note( id: map['id'] as int, title: map['title'] as String, body: map['body'] as String, date: map['date'] as String, ); }