write method

void write(
  1. Object? object
)

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
}