newLine static method

void newLine([
  1. int count = 1
])

New line

Implementation

static void newLine([int count = 1]) {
  stdout.writeln('\n' * (count - 1));
}