getPrinterName method

Future<String?> getPrinterName()

getPrinterName() returns a String representing the current connected printer's name.

Implementation

Future<String?> getPrinterName() async {
  return await BradyFlutterPluginPlatform.instance.getPrinterName();
}