writeln method

void writeln(
  1. String data
)

Write line to stdin.

Implementation

void writeln(String data) => _process.stdin.writeln(data);