fetchChatroomQueue method Null safety

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

Get the chatroom queue.

roomId The chatroom ID

Implementation

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