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]) {
write(obj);
_buffer.writeln();
}
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]) {
write(obj);
_buffer.writeln();
}