write method
Implementation
void write(Object? object) {
_sock.write(utf8.encode(object.toString()));
// TODO make sure the is correct; see _writeRequest above, may need to construct a SOCKSRequest from the data coming in
}
void write(Object? object) {
_sock.write(utf8.encode(object.toString()));
// TODO make sure the is correct; see _writeRequest above, may need to construct a SOCKSRequest from the data coming in
}