disconnect property

JSFunction get disconnect

Immediately disconnect the port. Calling disconnect() on an already-disconnected port has no effect. When a port is disconnected, no new events will be dispatched to this port.

Implementation

JSFunction get disconnect => _wrapped.disconnect;
set disconnect (JSFunction v)

Implementation

set disconnect(JSFunction v) {
  _wrapped.disconnect = v;
}