connectToFoundDevice method
Connect to a FoundDevice
that was previously found during a search
Implementation
Future<bool> connectToFoundDevice(
FoundDevice reader,
) {
return findAndConnectDevice(
readerTypes: {reader.type},
deviceAddress: reader.address,
);
}