removeDeviceBondWithAddress method

Future<bool?> removeDeviceBondWithAddress(
  1. String address
)

Removes bond with device with specified address. Returns true if unbonded, false if canceled or failed gracefully.

Note: May not work at every Android device!

Implementation

Future<bool?> removeDeviceBondWithAddress(String address) async =>
    await _methodChannel
        .invokeMethod('removeDeviceBond', {'address': address});