writeln method

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

Implementation

void writeln([Object? object = '']) {
  write(object);
  write('\n');
}