getLinkedIpcList method
Implementation
Future<Map<String, dynamic>> getLinkedIpcList(
String deviceSerial, // A1 Hub serial
String detectorSerial, // Actual detector serial
) async {
return _client.post('/api/lapp/detector/ipc/list/bind', {
'deviceSerial': deviceSerial,
'detectorSerial': detectorSerial,
});
}