writeln method Null safety

void writeln(
  1. [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 = ""]);