getDetectorList method

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

Implementation

Future<Map<String, dynamic>> getDetectorList(String deviceSerial) async {
  return _client.post('/api/lapp/detector/list', {
    'deviceSerial': deviceSerial,
  });
}