single constant

BoxBorderChars const single

Single-line box drawing characters (─ │ ┌ ┐ └ ┘).

Implementation

static const single = BoxBorderChars(
  topLeft: '\u250c',
  topRight: '\u2510',
  bottomLeft: '\u2514',
  bottomRight: '\u2518',
  horizontal: '\u2500',
  vertical: '\u2502',
);