simulateGATTDisconnection method

Future<void> simulateGATTDisconnection(
  1. String address
)

Simulates a GATT disconnection from the peripheral with |address|.

Implementation

Future<void> simulateGATTDisconnection(String address) async {
  await _client.send('BluetoothEmulation.simulateGATTDisconnection', {
    'address': address,
  });
}