getEventHandler method

ChatThreadEventHandler? getEventHandler(
  1. String identifier
)

Get the chat thread event handler.

Param identifier The custom handler identifier.

Return The chat thread event handler.

Implementation

ChatThreadEventHandler? getEventHandler(String identifier) {
  return _eventHandlesMap[identifier];
}