updateBluetoothAdapterName method

Future<bool> updateBluetoothAdapterName(
  1. String newName
)

Updates the name of the Bluetooth adapter.

The new name is given by newName.

Returns true if it has been set successfully, otherwise false.

Implementation

Future<bool> updateBluetoothAdapterName(String newName) async {
  return _datalinkManager.updateAdapterName(BLE, newName);
}