comma static method
Builds a dim, parenthesized comma-separated hint string. Example: "(Enter to confirm, Esc to cancel)"
Implementation
static String comma(List<String> segments, PromptTheme theme) {
return '${theme.dim}(${segments.join(', ')})${theme.reset}';
}