connect method

Future<bool> connect(
  1. String deviceId, {
  2. bool bypassWhitelist = false,
})

Connect to a printer by device id. bypassWhitelist (Android only) uses reflection to bypass SDK device name whitelist check.

Implementation

Future<bool> connect(String deviceId, {bool bypassWhitelist = false}) {
  throw UnimplementedError('connect() has not been implemented.');
}