getTypingUsers method

List<User> getTypingUsers()

The typing user list.

Implementation

List<User> getTypingUsers() {
  final typingStatuses =
      chat.channelCache.findAll<TypingStatus>(channelKey: channelUrl);
  final result = typingStatuses?.map((e) => e.user).toList() ?? [];

  sbLog.i(StackTrace.current, 'return: $result');
  return result;
}