hr method

void hr([
  1. int width = 32
])

Implementation

void hr([int width = 32]) {
  _buf.writeln('-' * width);
}