enableOppPush method Null safety

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

开启Oppo推送,appkey是Oppo的appkey,secret是Oppo的secret。申请流程访问 http://docs-im.easemob.com/im/android/push/thirdpartypush

Implementation

void enableOppPush(String appKey, String secret) {
  _enableOppoPush = true;
  _oppoAppKey = appKey;
  _oppoAppSecret = secret;
}