bindDeviceToken method

Future<void> bindDeviceToken({
  1. required String notifierName,
  2. required String deviceToken,
})

更新推送 token。

Param token 要更新的推送 token。

Throws 如果有异常会在此抛出,包括错误码和错误信息,详见 EMError

Implementation

Future<void> bindDeviceToken(
    {required String notifierName, required String deviceToken}) async {
  Map req = {'notifierName': notifierName, 'deviceToken': deviceToken};
  Map result =
      await PushChannel.invokeMethod(ChatMethodKeys.bindDeviceToken, req);
  try {
    EMError.hasErrorFromResult(result);
  } on EMError catch (e) {
    throw e;
  }
}