newLine method
Prints one or more blank lines
Implementation
void newLine([int count = 1]) {
for (int i = 0; i < count; i++) {
print('');
}
}
Prints one or more blank lines
void newLine([int count = 1]) {
for (int i = 0; i < count; i++) {
print('');
}
}