writeln method

  1. @override
void writeln([
  1. Object? object = ''
])
override

Writes an object to the output followed by a newline.

Used for complete lines of content.

Implementation

@override
void writeln([Object? object = '']) {
  _calls.add('output.writeln');
}