removeBond method

Future<void> removeBond({
  1. int timeout = 30,
})
override

Remove bond (Android Only)

Implementation

Future<void> removeBond({
  int timeout = 30, // TODO: implementation missing
}) async {
  try {
    await WinBle.unPair(_address);
  } catch (e) {
    log(e.toString());
  }
}