printerCurrentTransaction method

Future<bool> printerCurrentTransaction({
  1. required bool printCustomerSlip,
})

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});
}