newLine method

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

Prints one or more blank lines

Implementation

void newLine([int count = 1]) {
  for (int i = 0; i < count; i++) {
    print('');
  }
}