TencentCloudChatGroupProfileManager class
The TencentCloudChatGroupProfileManager is responsible for managing the TencentCloudChatGroupProfile component.
It enables manual declaration of TencentCloudChatGroupProfile
usage during the initUIKit
call,
and provides control over the component's configuration, UI widget builders, and event listeners on a global scale,
affecting all instances of the TencentCloudChatGroupProfile component.
Constructors
Properties
- hashCode → int
-
The hash code for this object.
no setterinherited
- runtimeType → Type
-
A representation of the runtime type of the object.
no setterinherited
Methods
-
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a nonexistent method or property is accessed.
inherited
-
toString(
) → String -
A string representation of this object.
inherited
Operators
-
operator ==(
Object other) → bool -
The equality operator.
inherited
Static Properties
- builder → TencentCloudChatGroupProfileBuilders
-
Allows dynamic updating of UI widget builders for all instances.
Call the
setBuilders
method and pass any UI builders to be modified, which will replace the previous configuration and apply changes immediately.no setter - config → TencentCloudChatGroupProfileConfig
-
Enables dynamic updating of configurations for all instances.
Call the
setConfigs
method and pass any configurations to be modified, which will replace the previous configuration and apply changes immediately.no setter - eventHandlers → TencentCloudChatGroupProfileEventHandlers
-
Attaches listeners to Component-level events.
Covers both
uiEventHandlers
(e.g., various onTap-like events) andlifeCycleEventHandlers
(business-related events). CallsetEventHandlers
from bothuiEventHandlers
andlifeCycleEventHandlers
to update specific event handlers. Note: This will cause the corresponding event's previously attached handlers to be invalidated, i.e., overridden.no setter
Static Methods
-
register(
) → ({TencentCloudChatWidgetBuilder widgetBuilder}) -
Manually declares the usage of the
TencentCloudChatGroupProfile
component. During theinitUIKit
call, addTencentCloudChatGroupProfileManager.register
inusedComponentsRegister
withincomponents
if you plan to use this component.