mirror of
https://github.com/OpenFlutter/fluwx.git
synced 2025-05-17 07:16:38 +08:00
547 B
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.