setChannelListConfig

Sets the channel list configuration for this fragment. Use UIKitConfig.groupChannelListConfig.clone() for the default value. Example usage:

val fragment = ChannelListFragment.Builder()
    .setChannelListConfig(
        UIKitConfig.groupChannelListConfig.clone().apply {
            this.enableTypingIndicator = true
        }
    )
    .build()

Return

This Builder object to allow for chaining of calls to set methods. since 3.6.0

Parameters

channelListConfig

The channel list config.