refund method

Future<bool> refund({
  1. String? transactionCode,
  2. String? transactionId,
})

Implementation

Future<bool> refund({String? transactionCode, String? transactionId}) async {
  return await channel.invokeMethod(PaymentTypeCall.REFUND.method, {"transactionCode": transactionCode, "transactionId": transactionId});
}