write abstract method

int write(List<int> buffer, [ int offset, int count ])

Writes up to count bytes of the buffer from offset buffer offset to the socket. The number of successfully written bytes is returned. This function is non-blocking and will only write data if buffer space is available in the socket.

The default value for offset is 0, and the default value for count is buffer.length - offset.

Source

int write(List<int> buffer, [int offset, int count]);

© 2012 the Dart project authors
Licensed under the Creative Commons Attribution-ShareAlike License v4.0.
https://api.dartlang.org/stable/1.24.3/dart-io/RawSocket/write.html