write method
Writes text
to the terminal at the current
cursor location without appending a newline character.
Implementation
void write(String text) {
_console.write(text);
}
Writes text
to the terminal at the current
cursor location without appending a newline character.
void write(String text) {
_console.write(text);
}