enableOppoPush method

void enableOppoPush(
  1. String appKey,
  2. String secret
)

开启 Oppo 推送。

Param appId Oppo 推送的 App ID。

Param appKey Oppo 推送的 App Key。

Implementation

void enableOppoPush(String appKey, String secret) {
  _pushConfig.enableOppoPush = true;
  _pushConfig.oppoAppKey = appKey;
  _pushConfig.oppoAppSecret = secret;
}