Future<int> addNote(Note note) async { final db = await createDatabase; return await db.insert('Note', note.toMap()); }