connectToFoundDevice method

Future<bool> connectToFoundDevice(
  1. FoundDevice reader
)
inherited

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,
  );
}