adapterName property

Future<String> get adapterName

Return the friendly Bluetooth name of the local Bluetooth adapter

Implementation

static Future<String> get adapterName async =>
    await _invokePlatform(() => FlutterBluePlusPlatform.instance.getAdapterName(BmBluetoothAdapterNameRequest()))
        .then((r) => r.adapterName);