getCurrentConnectionState method

Future<BleConnectionState> getCurrentConnectionState(
  1. String deviceAddress
)

Returns the current connection state for the Bluetooth device with the specified address.

Implementation

Future<BleConnectionState> getCurrentConnectionState(String deviceAddress) {
  throw UnimplementedError(
    'getCurrentConnectionState() has not been implemented.',
  );
}