getBleDevices method

HttpPacketResponse getBleDevices()

getBleDevices ask to the server the BLE devices that should sniff.

Implementation

HttpPacketResponse getBleDevices() async {
  final response = await _dio.get('/ble');
  return _processResponse(response);
}