sectionHeader method
Writes a section header line: ├─ SectionName
Implementation
void sectionHeader(String name) {
line(
'${theme.gray}${glyphs.borderConnector}${theme.reset} ${theme.dim}$name${theme.reset}');
}
Writes a section header line: ├─ SectionName
void sectionHeader(String name) {
line(
'${theme.gray}${glyphs.borderConnector}${theme.reset} ${theme.dim}$name${theme.reset}');
}