writeTop method
void
writeTop()
Writes the top border line with optional bold styling.
Implementation
void writeTop() {
final top = frame.top();
out.writeln(features.boldTitles ? '${theme.bold}$top${theme.reset}' : top);
}