createBond method

Future<void> createBond({
  1. int timeout = 90,
})
override

Force the bonding popup to show now (Android Only) Note! calling this is usually not necessary!! The platform does it automatically.

Implementation

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