adapterState property

Stream<BleAdapterState> adapterState

A stream of BleAdapterState representing the state of the Bluetooth adapter.

Implementation

Stream<BleAdapterState> get adapterState => FlutterBluePlus.adapterState
    .map((state) => BleAdapterState.values[state.index]);