doBackground method

Future<V2TimCallback> doBackground({
  1. required int unreadCount,
})

APP 检测到应用退后台时可以调用此接口,可以用作桌面应用角标的初始化未读数量。

从5.0.1(native)版本开始,如果配置了离线推送,会收到厂商的离线推送通道下发的通知栏消息,注意:仅安卓端需要调用。

参数

unreadCount	未读数量
callback	回调

Implementation

Future<V2TimCallback> doBackground({
  required int unreadCount,
}) async {
  return V2TimCallback.fromJson(
    formatJson(
      await _channel.invokeMethod(
        "doBackground",
        buildParam(
          {
            "ability": Utils.getAbility(),
            "unreadCount": unreadCount,
          },
        ),
      ),
    ),
  );
}