Future<List<Note>> getAllNotes() async { final db = await createDatabase; var allNotes = await db.query('Note'); return allNotes.map((note) => Note.fromMap(note)).toList(); }