gutter method

String gutter()

Returns the standard left gutter/frame prefix.

This is the pattern used at the start of content lines within a framed view. Returns empty string when borders are disabled.

Implementation

String gutter() => features.showBorders
    ? '${theme.gray}${glyphs.borderVertical}${theme.reset} '
    : '';