clearPrivateAllUnreadMsg static method

Future<int> clearPrivateAllUnreadMsg(
  1. int type
)

把所有收到的私信未读消息标记为已读 @param uid 用户id 成功返回处理条数, 否则返回<0的值

Implementation

static Future<int> clearPrivateAllUnreadMsg(int type) async {
  return await _channel.invokeMethod("clearAllUnreadMsg", {
    "type": type
  });
}