doPay method

void doPay(
  1. String callbackId,
  2. String tokenId,
  3. String? appId
)

发起支付

callbackId 支付完成后回调用的id。iOS为第三方app的schema,Android 为第三方APP目标页面的activity。

tokenId 支付订单号

appId 第三方APP的应用标识。iOS无此项内容,值为空;Android为第三方apk的包名。

Implementation

void doPay(String callbackId, String tokenId, String? appId) {
  throw UnimplementedError('doPay() has not been implemented.');
}