connect method

Future<bool> connect(
  1. int scannerId
)

Connect to a scanner by ID

scannerId The ID of the scanner to connect to Returns true if connection was successful, false otherwise

Implementation

Future<bool> connect(int scannerId) {
  throw UnimplementedError('connect() has not been implemented.');
}