write method
Writes data to the stdin of the remote process. This is a convenience
method that calls stdin.add
.
Implementation
void write(Uint8List data) {
stdin.add(data);
}
Writes data to the stdin of the remote process. This is a convenience
method that calls stdin.add
.
void write(Uint8List data) {
stdin.add(data);
}