scrollToBottom method
Scrolls the message list to the bottom for the specified conversation.
The userID
and groupID
parameters identify the target conversation.
Implementation
void scrollToBottom({
String? userID,
String? groupID,
String? topicID,
}) {
_triggerEvent(
event: EventName.scrollToBottom,
value: null,
user: userID,
topic: topicID,
group: groupID,
);
}