connectDevice method

Future<bool> connectDevice({
  1. String targetDevice = '',
  2. bool isStrict = false,
})

Implementation

Future<bool> connectDevice(
    {String targetDevice = '', bool isStrict = false}) async {
  return await module.ble
      .connectDevice(targetDevice: targetDevice, isStrict: isStrict);
}