reversal method

Future<bool> reversal()

Function to reversal transaction

Implementation

Future<bool> reversal() async {
  try {
    await channel.invokeMethod(PaymentTypeCall.reversal.method);
    return true;
  } catch (e) {
    return false;
  }
}