scrollToSpecificMessage method
Scrolls the message list to a specific message in the specified conversation.
The userID
and groupID
parameters identify the target conversation.
The msgID
parameter identifies the target message.
Implementation
void scrollToSpecificMessage({String? userID, String? groupID, String? topicID, String? msgID}) {
_triggerEvent(
event: EventName.scrollToSpecificMessage,
value: msgID,
user: userID,
group: groupID,
topic: topicID,
);
}