printAllFunctions method
Implementation
@override
Future<PrinterStatus> printAllFunctions(
Uint8List imageBytes, int width, int height, bool finishPrinting) async {
await methodChannel.invokeMethod<String>(PrinterCommands.print.label, {
"printerMode": PrinterModes.allFunctions.label,
"imageBytes": imageBytes,
"width": width,
"height": height
});
return finishPrinting ? await endPrinting() : await checkPrinter();
}