deletePendingMetodoMuestreoEspecie method
- int id
Implementation
Future<void> deletePendingMetodoMuestreoEspecie(int id) async {
final db = await database;
await db.delete(
'pending_metodo_muestreo_especie',
where: 'id = ?',
whereArgs: [id],
);
}