key static method

String key(
  1. String label,
  2. PromptTheme theme
)

Wraps a keyboard label in square brackets with the proper accent color.

Implementation

static String key(String label, PromptTheme theme) {
  return '[${theme.keyAccent}$label${theme.reset}]';
}