Deletes a diary entry by its id.
id
Future<void> deleteEntry(String id) async { final db = await database; await db.delete('diary_entries', where: 'id = ?', whereArgs: [id]); }