connect method

Future<BluetoothConnection?> connect(
  1. String address, {
  2. String? uuid,
})

Tries to create a connection to the device with the given address.

Implementation

Future<BluetoothConnection?> connect(String address, {String? uuid}) =>
    _instance.connect(address, uuid: uuid);