setSendBufferSize method
Sets the send buffer size.
Implementation
void setSendBufferSize(int size) {
if (_closing) throw StateError('Socket is closing');
_sendBufferSize = size;
}
Sets the send buffer size.
void setSendBufferSize(int size) {
if (_closing) throw StateError('Socket is closing');
_sendBufferSize = size;
}