write method

void write(
  1. Uint8List data
)

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);
}