set Channel Config
Sets channel configuration for this fragment. Use UIKitConfig.groupChannelConfig.clone()
for the default value. Example usage:
val fragment = MessageThreadFragment.Builder(CHANNEL_URL, parentMessage)
.setChannelConfig(
UIKitConfig.groupChannelConfig.clone().apply {
this.enableMention = 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 Config
The channel config.