getDetalleEspecieByExpediente method

Future<List<Map<String, dynamic>>> getDetalleEspecieByExpediente(
  1. String expedienteId
)

Implementation

Future<List<Map<String, dynamic>>> getDetalleEspecieByExpediente(
    String expedienteId) async {
  final db = await database;
  return await db.query('detalle_especie_expediente',
      where: 'expediente_id = ?', whereArgs: [expedienteId]);
}