Future<void> deletePendingArbol(int id) async { final db = await database; await db.delete('pending_arboles', where: 'id = ?', whereArgs: [id]); }