getDeviceChannelInfo method

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

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