paymentPrinterTransactionKey method
Function to invoke method from printer transaction by key
Implementation
Future<bool> paymentPrinterTransactionKey({
required String transactionKey,
}) async {
return await channel.invokeMethod(PaymentTypeCall.paymentPrinterTransactionKey.method, {
"transactionKey": transactionKey,
});
}