write method

  1. @override
void write(
  1. String text
)
override

Writes the text to the console.

Implementation

@override
void write(
  final String text,
) {
  stdout.write(text);
}