offConnection method

void offConnection({
  1. required HostConnectionHandler handler,
})
inherited

Implementation

void offConnection({required handler}) {
  var subsription = h.connectionListenerHandlers.remove(handler);
  subsription?.cancel();
}