fetchChatroomQueue method

Future<NIMResult<List<NIMChatroomQueueEntry>>> fetchChatroomQueue(
  1. String roomId
)

获取聊天室队列

roomId 聊天室ID

Implementation

Future<NIMResult<List<NIMChatroomQueueEntry>>> fetchChatroomQueue(
    String roomId) {
  return _platform.fetchChatroomQueue(roomId);
}