Scroll to message in SBUChannelViewController

Hello!

I’m working on search functionality in the SBUChannelVC and I’m retrieving results like this
let messageQuery = SBDMessageSearchQuery.create { [weak self] builder in builder.keyword = keyword builder.exactMatch = false builder.channelUrl = currentChannel.channelUrl }.

query.loadNextPage { messages, error in
if let error = error { promise(.failure(error)) }

                promise(.success(messages))
            }

How can I have the SBUChannelVC scroll to one of the results once I get them? Is this functionality supported (scrolling to message by messageId/timestamp)?

Thank you very much!