sendPrivateReadedAckWithStime static method

Future<SendReadedAckWithStimeResult> sendPrivateReadedAckWithStime(
  1. int sTime,
  2. String sessionId
)

根据时间戳标记消息已读 sTime 时间戳 sessionId 会话ID,私聊时为对方的uid,群组时为群组id SendReadedAckWithStimeResult的字段eCode和rCode成功返回0, 否则返回非0

Implementation

static Future<SendReadedAckWithStimeResult> sendPrivateReadedAckWithStime(int sTime, String sessionId) async {
  Map reslut = await _channel.invokeMethod("sendPrivateReadedAckWithStime",{
    "sTime": sTime,
    "sessionId": sessionId
  });
  return SendReadedAckWithStimeResult.convertFromMap(reslut);
}