write method

void write(
  1. String input
)

Implementation

void write(String input) {
  final data = utf8.encode(input);
  _core.write(data);
}