getPendingMetodoMuestreoEspecie method
Implementation
Future<List<Map<String, dynamic>>> getPendingMetodoMuestreoEspecie() async {
final db = await database;
return await db.query(
'pending_metodo_muestreo_especie',
orderBy: 'timestamp ASC',
);
}