0

我想知道如何使用 RevenueCat(代码 19)检查延迟付款是否成功。我正在使用 Google 应用内购买进行测试。是否有关于如何检查延迟付款是否成功的指南?

这是我的代码:

...
on PlatformException catch (e) {
      if(e.code.toString().contains("2"))
      {
        notificationMessage("Payment declined.");
      }
      else if(e.code.toString().contains("19"))
      {
        notificationMessage("Delay in payment. Please wait...");

        //How do I check if payment is successful?
      }
    }
4

0 回答 0