getLinkedIpcList method

Future<Map<String, dynamic>> getLinkedIpcList(
  1. String deviceSerial,
  2. String detectorSerial
)

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