refundNfc method

Future<bool> refundNfc(
  1. dynamic valor,
  2. dynamic idEvento
)

Implementation

Future<bool> refundNfc(valor, idEvento) async {
  await channel.invokeMethod(PaymentTypeCall.REFUND_NFC.method, {"valor": valor, "idEvento": idEvento});
  return true;
}