normal constant

Border const normal

Normal/single-line border (┌─┐│└─┘).

Implementation

static const normal = Border(
  top: '─',
  bottom: '─',
  left: '│',
  right: '│',
  topLeft: '┌',
  topRight: '┐',
  bottomLeft: '└',
  bottomRight: '┘',
  middleLeft: '├',
  middleRight: '┤',
  middleTop: '┬',
  middleBottom: '┴',
  middle: '┼',
);