connectorLine static method

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

Implementation

static String connectorLine(String title, PromptTheme theme) {
  final g = theme.glyphs;
  return '${theme.gray}${g.borderConnector}${g.borderHorizontal * (title.length + 6)}${theme.reset}';
}