updateHMSPushToken method
- @Deprecated("Use [bindDeviceToken] instead")
- String token
更新华为推送 token。
Param token
要更新的华为推送 token。
Throws 如果有异常会在此抛出,包括错误码和错误信息,详见 EMError。
Implementation
@Deprecated("Use [bindDeviceToken] instead")
///
///
///
/// 更新华为推送 token。
///
/// Param [token] 要更新的华为推送 token。
///
/// **Throws** 如果有异常会在此抛出,包括错误码和错误信息,详见 [EMError]。
///
Future<void> updateHMSPushToken(String token) async {
if (Platform.isAndroid) {
Map req = {'token': token};
Map result = await PushChannel.invokeMethod(
ChatMethodKeys.updateHMSPushToken, req);
try {
EMError.hasErrorFromResult(result);
} on EMError catch (e) {
throw e;
}
}
}