plainTitle static method

String plainTitle(
  1. String title,
  2. PromptTheme theme
)

Plain title with accent color.

Implementation

static String plainTitle(String title, PromptTheme theme) {
  return '${theme.selection}$title${theme.reset}';
}