highlightMessage method
Highlight the message with the specified id
.
Implementation
void highlightMessage(String id, {Duration? duration}) =>
_scrollController.highlight(
chatMessageAutoScrollIndexById[id]!,
highlightDuration: duration ?? const Duration(seconds: 3),
);