buildBottom method

String buildBottom(
  1. int innerWidth
)

Builds the bottom border line for a given width.

Implementation

String buildBottom(int innerWidth) {
  if (!isVisible) return '';
  return '$bottomLeft${bottom * innerWidth}$bottomRight';
}