startScan method

Future startScan({
  1. Duration? timeout,
  2. bool isBle = false,
})

Implementation

Future startScan({Duration? timeout, bool isBle = false}) async {
  return await bluetoothPrinterConnector.startScan(
      timeout: timeout, isBle: isBle);
}