unlisten method

Future<void> unlisten(
  1. String eventName
)

Stops listening to a specific event.

Throws SocketNotConnectedException if not connected. Throws SocketEventException if unlisten fails.

Implementation

Future<void> unlisten(String eventName) {
  throw UnimplementedError('unlisten() has not been implemented.');
}