cancelPayment method

Future<Transaction?> cancelPayment({
  1. required String initiatorTransactionKey,
  2. bool? printReceipt,
})

Cancel Payment with ITK (Initiator Transaction Key)

Implementation

Future<Transaction?> cancelPayment({
  required String initiatorTransactionKey,
  bool? printReceipt,
}) {
  throw UnimplementedError('cancelPayment() has not been implemented.');
}