getPrinters method

  1. @override
Future<List<Printer>> getPrinters({
  1. required PrinterType printerType,
})
override

Lista as impressoras disponíveis para o printerType informado.

Implementation

@override
Future<List<Printer>> getPrinters({required PrinterType printerType}) async {
  return await ThermalPrinterFlutterPlatform.instance
      .getPrinters(printerType: printerType);
}