loadMonitoreos method
Implementation
Future<List<Map<String, dynamic>>> loadMonitoreos() async {
try {
return await _dbHelper.getAllMonitoreosSortedByDate();
} catch (e) {
print("Error al cargar monitoreos: $e");
await _sendNotification(
'Error de Carga',
'Error al cargar monitoreos: $e',
);
return [];
}
}