isPrinterBluetooth method

Future<bool?> isPrinterBluetooth(
  1. String printerName
)

isPrinterBluetooth(String) takes the name of a discovered printer and checks if it was discovered by the Bluetooth Scan

If true, it was discovered by the Bluetooth Scan and supports BLE connectivity. If false, it was discovered by Wi-Fi and support Wi-Fi connectivity. If null, the printer name passed in is not valid.

Implementation

Future<bool?> isPrinterBluetooth(String printerName) async {
  throw UnimplementedError(
      'isPrinterBluetooth(String) has not been implemented.');
}