disconnect method

Future<void> disconnect(
  1. String deviceAddress
)

Terminates the connection to a BLE peripheral. Initiates a connection to a BLE peripheral and returns a Stream representing the connection state.

Implementation

Future<void> disconnect(String deviceAddress) async {
  throw UnimplementedError('disconnect() has not been implemented.');
}