getEntry method

SocketEventEntry? getEntry(
  1. String event
)

Get the handler entry for a specific event.

Implementation

SocketEventEntry? getEntry(String event) {
  return _handlers[event];
}