set Channel List Config
open fun setChannelListConfig(@NonNull channelListConfig: ChannelListConfig): ChannelListFragment.Builder
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()
Content copied to clipboard
Return
This Builder object to allow for chaining of calls to set methods. since 3.6.0
Parameters
channel List Config
The channel list config.