cancelTransaction method

Future<bool> cancelTransaction({
  1. required int idFromBase,
})

Function to invoke method from cancel transaction with SDK the Stone

Implementation

Future<bool> cancelTransaction({required int idFromBase}) async {
  return await channel.invokeMethod(PaymentTypeCall.cancelTransaction.method, {"idFromBase": idFromBase});
}