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