getChannelHandler method

BaseChannelHandler? getChannelHandler(
  1. String identifier
)

Retrieves the channel event handler with the specified identifier.

identifier : The identifier of the handler to retrieve.

Returns the channel event handler.

Implementation

BaseChannelHandler? getChannelHandler(String identifier) {
  return SendbirdChat.getChannelHandler(identifier);
}