selectableLine method
Builds a standard selectable item line.
Combines arrow indicator with content. Common in list views.
Example output: ▶ Selected item or Unselected item
Implementation
String selectableLine(String content, {required bool focused}) {
return '${arrow(focused)} $content';
}