checkboxLine method
Builds a checkbox item line.
Combines arrow, checkbox, and content. Common in multi-select views.
Example output: ▶ ■ Checked item or □ Unchecked item
Implementation
String checkboxLine(
String content, {
required bool focused,
required bool checked,
}) {
return '${arrow(focused)} ${checkbox(checked)} $content';
}