getDeviceChannelInfo method
Implementation
Future<Map<String, dynamic>> getDeviceChannelInfo(String deviceSerial) async {
return _client.post('/api/lapp/device/camera/list', {
// Note: API doc says /api/lapp/device/camera/list for this one too
'deviceSerial': deviceSerial,
});
}