setChannelSettingConfig

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

val fragment = ChannelSettingsFragment.Builder()
    .setChannelSettingConfig(
        UIKitConfig.groupChannelSettingConfig.clone().apply {
            this.enableMessageSearch = true
        }
    )
    .build()

Return

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

Parameters

channelSettingConfig

The channel setting config.