usedComponentsRegister property

List<TencentCloudChatModularUIPackageRegister> usedComponentsRegister
final

List of registration functions for the components used in the Chat UIKit.

Each modular UI package component used in the Chat UIKit must have its registration method included here. Add the registration methods of the components you are using.

Depending on the components you're using in your application, include the corresponding register methods in the list. Example usage:

usedComponentsRegister: [
  TencentCloudChatConversationManager.register,  // Conversation component
  TencentCloudChatMessageManager.register,       // Message component
  TencentCloudChatContactManager.register,       // Contact component
]

Implementation

final List<TencentCloudChatModularUIPackageRegister> usedComponentsRegister;