writeln abstract method
- [Object? object = ""]
Writes object
followed by a newline, "\n"
.
Calling writeln(null)
will write the "null"
string before the
newline.
Implementation
void writeln([Object? object = ""]);
Writes object
followed by a newline, "\n"
.
Calling writeln(null)
will write the "null"
string before the
newline.
void writeln([Object? object = ""]);