eventHandlers property
TencentCloudChatGroupProfileEventHandlers
get
eventHandlers
Attaches listeners to Component-level events.
Covers both uiEventHandlers
(e.g., various onTap-like events) and lifeCycleEventHandlers
(business-related events).
Call setEventHandlers
from both uiEventHandlers
and lifeCycleEventHandlers
to update specific event handlers.
Note: This will cause the corresponding event's previously attached handlers to be invalidated, i.e., overridden.
Implementation
static TencentCloudChatGroupProfileEventHandlers get eventHandlers {
TencentCloudChat.instance.dataInstance.groupProfile.groupProfileEventHandlers ??=
TencentCloudChatGroupProfileEventHandlers();
return TencentCloudChat.instance.dataInstance.groupProfile.groupProfileEventHandlers!;
}