getEventHandler method

ContactEventHandler? getEventHandler(
  1. String identifier
)

Get the contact event handler.

Param identifier The custom handler identifier.

Return The contact event handler.

Implementation

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