writeEventsEnabled property
Whether the RawDatagramSocket should listen for RawSocketEvent.write events.
Default is true.
This is a one-shot listener, and writeEventsEnabled must be set to true
again to receive another write event.
Implementation
@override
bool get writeEventsEnabled => socket.writeEventsEnabled;
Whether the RawDatagramSocket should listen for RawSocketEvent.write events.
Default is true.
This is a one-shot listener, and writeEventsEnabled must be set to true
again to receive another write event.
Implementation
@override
set writeEventsEnabled(bool value) => socket.writeEventsEnabled = value;