getBindableIpcList method
Implementation
Future<Map<String, dynamic>> getBindableIpcList(String deviceSerial) async {
// deviceSerial here is the A1 Hub serial
// Response structure not fully detailed yet, likely a list of IPCs.
return _client.post('/api/lapp/detector/ipc/list/bindable', {
'deviceSerial': deviceSerial,
});
}