set Channel Setting Config
open fun setChannelSettingConfig(@NonNull channelSettingConfig: ChannelSettingConfig): ChannelSettingsFragment.Builder
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()
Content copied to clipboard
Return
This Builder object to allow for chaining of calls to set methods. since 3.6.0
Parameters
channel Setting Config
The channel setting config.