activeDebugLog method

Future<void> activeDebugLog({
  1. required bool isDebugLog,
})

Function to invoke method from refund payment with SDK the Stone

Implementation

Future<void> activeDebugLog({
  required bool isDebugLog,
}) async {
  await channel.invokeMethod(
    PaymentTypeCall.activeDebugLog.method,
    {
      "isDebugLog": isDebugLog,
    },
  );
}