getBindableIpcList method

Future<Map<String, dynamic>> getBindableIpcList(
  1. String deviceSerial
)

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,
  });
}