top method

String top()

Returns the top title line (unstyled; caller may add bold if desired).

Implementation

String top() {
  return features.showBorders
      ? FrameRenderer.titleWithBorders(title, theme)
      : FrameRenderer.plainTitle(title, theme);
}