typingUsers property

List<User> get typingUsers

Returns a list of all current typing users.

Implementation

List<User> get typingUsers {
  final typingMxid = ephemerals['m.typing']?.content['user_ids'];
  return (typingMxid is List)
      ? typingMxid
            .cast<String>()
            .map(unsafeGetUserFromMemoryOrFallback)
            .toList()
      : [];
}