statusPanelRow static method

void statusPanelRow(
  1. String content
)

Implementation

static void statusPanelRow(String content) {
  final w = _w();
  final inner = w - 6;
  final padded = content.padRight(inner);
  print(
      '$_gr║$_r  ${padded.substring(0, inner.clamp(0, padded.length))}  $_gr║$_r');
}