scrollToBottom method

void scrollToBottom({
  1. String? userID,
  2. String? groupID,
  3. String? topicID,
})

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,
  );
}