Files
fluwx/doc/PAYMENT.md
2023-05-10 22:30:01 +08:00

547 B

Payment

Calling payment is easy but to make it work isn't not so easy:

fluwx.pay(
      which: Payment(
      appId: result['appid'].toString(),
      partnerId: result['partnerid'].toString(),
      prepayId: result['prepayid'].toString(),
      packageValue: result['package'].toString(),
      nonceStr: result['noncestr'].toString(),
      timestamp: result['timestamp'],
      sign: result['sign'].toString(),
));

Take a look at payment document for help.