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