scrollToMessage static method
Scroll to a specific message by ID This method can be called from outside to scroll to a message
Implementation
static void scrollToMessage(GlobalKey<State<ChatView>>? key, String messageId) {
if (key?.currentState is _ChatViewState) {
(key!.currentState as _ChatViewState)._scrollToMessage(messageId);
}
}