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