writeln method
Writes the given object to the buffer, followed by a newline.
If no object is provided, only a newline is written.
Implementation
void writeln([Object? obj]) {
_sink.writeln(obj);
}
Writes the given object to the buffer, followed by a newline.
If no object is provided, only a newline is written.
void writeln([Object? obj]) {
_sink.writeln(obj);
}