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