allSubscribedChannels

abstract val allSubscribedChannels: List<Channel>

Get all channels the user has subscribed to.

This property provides a list of Channel objects representing all channels that the user has subscribed to. These are channels the user follows to receive updates, but does not own or manage.

Behavior:

  • The list is automatically updated with the latest information each time it is accessed, reflecting changes from allChannels, such as new subscriptions or updates to the user's subscribed channels.

Usage:

  • This property can be used to display or manage channels the user subscribes to, for example, by rendering a list of subscribed channels in a UI component or enabling users to browse their followed channels.

Return

A List of Channel objects representing all channels the user has subscribed to.