updateSessionWithMessage method

Future<NIMResult<void>> updateSessionWithMessage(
  1. {required NIMMessage message,
  2. bool needNotify = false}
)

使用消息更新会话对象


message 消息对象
needNotify 是否需要发送通知

Implementation

Future<NIMResult<void>> updateSessionWithMessage({
  required NIMMessage message,
  bool needNotify = false,
}) {
  return _platform.updateSessionWithMessage(
      message: message, needNotify: needNotify);
}