printerCurrentTransaction method
Function to invoke method from printer current transaction with SDK the Stone
Implementation
Future<bool> printerCurrentTransaction({
required bool printCustomerSlip,
}) async {
return await channel.invokeMethod(PaymentTypeCall.printTransaction.method, {
"printCustomerSlip": printCustomerSlip,
});
}